From 6cb39bb399b6d4cb5bb046164f8d21e62c11f13f Mon Sep 17 00:00:00 2001 From: Una Kearney Date: Fri, 5 Dec 2025 19:53:04 -0500 Subject: [PATCH] Indentation fixes --- PluralKit.Core/Utils/MiscUtils.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PluralKit.Core/Utils/MiscUtils.cs b/PluralKit.Core/Utils/MiscUtils.cs index bb995809..b6a25964 100644 --- a/PluralKit.Core/Utils/MiscUtils.cs +++ b/PluralKit.Core/Utils/MiscUtils.cs @@ -4,7 +4,7 @@ namespace PluralKit.Core; public static class MiscUtils { - + // discord mediaproxy URLs used to be stored directly in the database, so now we cleanup image urls before using them outside of proxying private static readonly Regex MediaProxyUrl = new( @@ -52,7 +52,7 @@ public static class MiscUtils case "time_1h": time /= 60*60; break; case "time_6h": time /= 6*60*60; break; case "time_1d": time /= 24*60*60; break; - } + } return time.ToString(); }