From fc11a7b8ee45d8cfb3be9ae94c82ffa81c4d8306 Mon Sep 17 00:00:00 2001 From: spiral Date: Mon, 13 Sep 2021 02:13:19 -0400 Subject: [PATCH] feat: raise command message retention time to 24 hours --- PluralKit.Bot/Services/CommandMessageService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Services/CommandMessageService.cs b/PluralKit.Bot/Services/CommandMessageService.cs index 868a56f9..f07994ed 100644 --- a/PluralKit.Bot/Services/CommandMessageService.cs +++ b/PluralKit.Bot/Services/CommandMessageService.cs @@ -10,7 +10,7 @@ namespace PluralKit.Bot { public class CommandMessageService { - private static readonly Duration CommandMessageRetention = Duration.FromHours(2); + private static readonly Duration CommandMessageRetention = Duration.FromHours(24); private readonly IDatabase _db; private readonly ModelRepository _repo;