From 4e67c79154537e260efaa079aa972b6a27bea5a1 Mon Sep 17 00:00:00 2001 From: Ske Date: Thu, 24 Dec 2020 19:42:04 +0100 Subject: [PATCH] Fix autoproxy timeout message --- PluralKit.Bot/Commands/Autoproxy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/Autoproxy.cs b/PluralKit.Bot/Commands/Autoproxy.cs index b1d690fd..91e2debd 100644 --- a/PluralKit.Bot/Commands/Autoproxy.cs +++ b/PluralKit.Bot/Commands/Autoproxy.cs @@ -167,7 +167,7 @@ namespace PluralKit.Bot else if (newTimeoutHours == 0) await ctx.Reply($"{Emojis.Success} Latch timeout disabled. Latch mode autoproxy will never time out."); else - await ctx.Reply($"{Emojis.Success} Latch timeout set to {newTimeout.Value!.ToTimeSpan().Humanize()} hours."); + await ctx.Reply($"{Emojis.Success} Latch timeout set to {newTimeout.Value!.ToTimeSpan().Humanize()}."); } public async Task AutoproxyAccount(Context ctx)