1
0
mirror of https://git.sr.ht/~cadence/bibliogram synced 2025-12-17 03:28:49 +00:00

Add screenshot tester

This commit is contained in:
Cadence Ember
2020-06-21 04:09:36 +12:00
parent b439158cbc
commit ee2626924a
17 changed files with 860 additions and 12 deletions

View File

@@ -13,7 +13,7 @@ setInterval((new (function() {
for (const waiter of waiters.values()) {
waiter.stream.push(payload)
}
})).constructor, 50000)
})).constructor, 50000).unref()
class Waiter {
constructor(username) {

View File

@@ -7,7 +7,7 @@ setInterval((new (function() {
for (const stream of streams.values()) {
stream.push(payload)
}
})).constructor, 50000)
})).constructor, 50000).unref()
module.exports = [
{

View File

@@ -60,7 +60,7 @@ function cleanCSRF() {
db.prepare("DELETE FROM CSRFTokens WHERE expires <= ?").run(Date.now())
}
cleanCSRF()
setInterval(cleanCSRF, constants.caching.csrf_time)
setInterval(cleanCSRF, constants.caching.csrf_time).unref()
module.exports.getToken = getToken
module.exports.getSettings = getSettings