We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24c9098 commit 4fe4b30Copy full SHA for 4fe4b30
app.js
@@ -210,7 +210,7 @@ async function loadMatches() {
210
Object.values(games).forEach(game => {
211
const { lichessGameId, white, black, status } = game;
212
if (!lichessGameId) return;
213
- if (status != 'finished' || status != 'pending') return;
+ if (status != 'finished' && status != 'pending') return;
214
215
const card = document.createElement('div');
216
card.className = 'match-card';
0 commit comments