Fix limiter

This commit is contained in:
2022-08-06 21:13:11 +03:00
parent e9a14fe570
commit 8c945cf577

View File

@@ -46,6 +46,6 @@ export default class Limiter {
this.debugger(`${updateId}: ${count}`) this.debugger(`${updateId}: ${count}`)
return count <= this.MAX_PROCESSING_COUNT; return count > this.MAX_PROCESSING_COUNT;
} }
} }