Fix debugger

This commit is contained in:
2022-08-09 17:01:30 +03:00
parent 8c945cf577
commit 3b1eb0ee16
2 changed files with 3 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ export default class Limiter {
static async isLimited(updateId: number): Promise<boolean> {
const count = await this._getCount(updateId);
this.debugger(`${updateId}: ${count}`)
this.debugger(`${updateId}: ${count}`);
return count > this.MAX_PROCESSING_COUNT;
}