diff --git a/lib/database.js b/lib/database.js index bd7c603..48b74d2 100644 --- a/lib/database.js +++ b/lib/database.js @@ -170,10 +170,10 @@ class Database { // Allow null timestamps, the frontend will safely handle them // This allows insertion of free standing records without a known timestamp if (playerCount !== null) { - // eslint-disable-next-line standard/no-callback-literal + // eslint-disable-next-line node/no-callback-literal callback(true, playerCount, timestamp) } else { - // eslint-disable-next-line standard/no-callback-literal + // eslint-disable-next-line node/no-callback-literal callback(false) } })