Indentation fixes

This commit is contained in:
Una Kearney 2025-12-05 19:53:04 -05:00
parent 776b562ce7
commit 6cb39bb399
No known key found for this signature in database

View file

@ -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();
}