fix
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
Timo Hocker 2020-08-23 18:43:21 +02:00
parent 62bcac28dd
commit 04707545f1

View File

@ -18,7 +18,7 @@ module.exports = (get_db) => ({
)
.from ('log')
.where ({ app_id })
.orderBy ({ column: 'timestamp', order: 'desc' })
.orderBy ('timestamp', 'desc')
.limit (Math.min (limit, 10000))
.offset (offset);
},