Actually fix scheduled closing on MySQL/MariaDB
parent
23a39dd335
commit
0b677d338e
|
@ -143,7 +143,8 @@ class Thread {
|
|||
dm_message_id: msg.id
|
||||
});
|
||||
|
||||
if (this.scheduled_close_at) {
|
||||
// The 1970 check is a knex bug, see https://github.com/tgriesser/knex/issues/1276
|
||||
if (this.scheduled_close_at && this.scheduled_close_at !== '1970-01-01T00:00:00.000Z') {
|
||||
await this.cancelScheduledClose();
|
||||
await this.postSystemMessage({
|
||||
content: `<@!${this.scheduled_close_id}> Thread that was scheduled to be closed got a new reply. Cancelling.`,
|
||||
|
|
Loading…
Reference in New Issue