From 5fac500dcf3c2af79ca091d2d62244209c285062 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Wed, 6 Jul 2022 03:00:53 +0200 Subject: [PATCH] remind me interaction on .timely should now work correctly --- src/NadekoBot/Modules/Utility/Remind/RemindService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/Utility/Remind/RemindService.cs b/src/NadekoBot/Modules/Utility/Remind/RemindService.cs index 4fbac330e..543e1f4bb 100644 --- a/src/NadekoBot/Modules/Utility/Remind/RemindService.cs +++ b/src/NadekoBot/Modules/Utility/Remind/RemindService.cs @@ -193,11 +193,12 @@ public class RemindService : INService, IReadyExecutor ServerId = guildId ?? 0, IsPrivate = isPrivate, When = time, - Message = message, + Message = message, }; await using var ctx = _db.GetDbContext(); await ctx.Reminders .AddAsync(rem); + await ctx.SaveChangesAsync(); } } \ No newline at end of file