mirror of
https://git.sr.ht/~emerson/reflectionircd
synced 2025-08-31 22:29:16 +00:00
give the server a bit of leniency before complaining about lag
This commit is contained in:
parent
6c1135bfe4
commit
d5dd3f8f51
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ export class IRCUser {
|
|||
return;
|
||||
}
|
||||
if (this.isSyncing) {
|
||||
if ((Date.now() - this.currentSyncTime) > 15000)
|
||||
if ((Date.now() - this.currentSyncTime) > 20000)
|
||||
console.log(`Sync is lagging, current sync has been running for ${Date.now() - this.currentSyncTime} milliseconds`);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue