mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 14:10:53 +00:00
Catch proper exception instead
This commit is contained in:
@@ -253,8 +253,8 @@ namespace ArchiSteamFarm {
|
||||
public static string ToHumanReadable(this TimeSpan timeSpan) {
|
||||
try {
|
||||
return timeSpan.Humanize(3, maxUnit: TimeUnit.Year, minUnit: TimeUnit.Second);
|
||||
} catch {
|
||||
// Workaround for lack of support at Humanizer side
|
||||
} catch (TypeInitializationException e) when (e.InnerException is CultureNotFoundException) {
|
||||
// TODO: Workaround for https://github.com/Humanizr/Humanizer/issues/1059
|
||||
return timeSpan.ToString();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user