Scheduling fix for MySQL/MariaDB version 3000

master
Dragory 2018-03-11 22:48:53 +02:00
parent f1940ccaa7
commit 38bb553588
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ class Thread {
});
// 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') {
if (this.scheduled_close_at && typeof this.scheduled_close_at === 'string') {
await this.cancelScheduledClose();
await this.postSystemMessage({
content: `<@!${this.scheduled_close_id}> Thread that was scheduled to be closed got a new reply. Cancelling.`,