This commit is contained in:
Erik 2021-06-20 17:06:40 +03:00
parent 346707d5da
commit 91ae72a2ba
No known key found for this signature in database
GPG Key ID: 7E862371D3409F16

View File

@ -79,7 +79,7 @@ class ChannelHandler {
await channel.edit({ parentID: this.readMail.id, lockPermissions: true }); await channel.edit({ parentID: this.readMail.id, lockPermissions: true });
if (!this.cache.updatedThreads.includes(target)) this.cache.updatedThreads.push(target); if (!this.cache.updatedThreads.includes(target)) this.cache.updatedThreads.push(target);
if (this.cache.queue.includes(target)) this.queue.splice(this.cache.queue.indexOf(target), 1); if (this.cache.queue.includes(target)) this.cache.queue.splice(this.cache.queue.indexOf(target), 1);
return {}; return {};
} }