summaryrefslogtreecommitdiff
path: root/server.js
diff options
context:
space:
mode:
Diffstat (limited to 'server.js')
-rw-r--r--server.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server.js b/server.js
index 78d437a..0805514 100644
--- a/server.js
+++ b/server.js
@@ -1478,7 +1478,7 @@ const QUERY_LIST_PUBLIC_GAMES_OF_USER = SQL(`
and
( status <= ${STATUS_FINISHED} )
and
- ( not is_private or status = ${STATUS_ACTIVE} )
+ ( not is_private or status >= ${STATUS_ACTIVE} )
order by status asc, mtime desc
`)