mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 07:04:27 +00:00
Catch proper exception instead
This commit is contained in:
parent
cac5d5fadb
commit
e26aec339f
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue