mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-04 17:19:47 -04:00
Add play_counts API input null check
This commit is contained in:
parent
372ac20a67
commit
05beebee68
1 changed files with 2 additions and 0 deletions
|
@ -319,6 +319,8 @@ LevelHandler = class LevelHandler extends Handler
|
|||
# This is hella slow (4s on my box), so relying on some dumb caching for it.
|
||||
# If we can't make this faster with indexing or something, we might want to maintain the counts another way.
|
||||
levelIDs = req.query.ids or req.body.ids
|
||||
return @sendSuccess res, [] unless levelIDs?
|
||||
|
||||
@playCountCache ?= {}
|
||||
@playCountCachedSince ?= new Date()
|
||||
if (new Date()) - @playCountCachedSince > 86400 * 1000 # Dumb cache expiration
|
||||
|
|
Loading…
Add table
Reference in a new issue