Skip to content

Commit 4fe4b30

Browse files
Update app.js
1 parent 24c9098 commit 4fe4b30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ async function loadMatches() {
210210
Object.values(games).forEach(game => {
211211
const { lichessGameId, white, black, status } = game;
212212
if (!lichessGameId) return;
213-
if (status != 'finished' || status != 'pending') return;
213+
if (status != 'finished' && status != 'pending') return;
214214

215215
const card = document.createElement('div');
216216
card.className = 'match-card';

0 commit comments

Comments
 (0)