From b81f9e8b73cb520ad5ae916c3e571ea55f4ca489 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sat, 20 Aug 2022 23:07:02 -0400 Subject: fix ts composite shit, replace got with native fetch, update deps --- src/tasks/feature/handleReminders.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/tasks/feature/handleReminders.ts') diff --git a/src/tasks/feature/handleReminders.ts b/src/tasks/feature/handleReminders.ts index 1e44083..a9f5658 100644 --- a/src/tasks/feature/handleReminders.ts +++ b/src/tasks/feature/handleReminders.ts @@ -1,5 +1,5 @@ import { BushTask, dateDelta, format, Reminder, Time } from '#lib'; -const { Op } = (await import('sequelize')).default; +import { Op } from 'sequelize'; export default class HandlerRemindersTask extends BushTask { public constructor() { @@ -29,8 +29,7 @@ export default class HandlerRemindersTask extends BushTask { void this.client.users .send( entry.user, - `The reminder you set ${dateDelta(entry.created)} ago has expired: ${format.bold(entry.content)} -${entry.messageUrl}` + `The reminder you set ${dateDelta(entry.created)} ago has expired: ${format.bold(entry.content)}\n${entry.messageUrl}` ) .catch(() => false); void entry.update({ notified: true }); -- cgit