Fix invalid exception being caught.

This commit is contained in:
ahjephson
2025-03-22 13:51:44 +00:00
parent 4098f8f5a9
commit e23842fcb0

View File

@@ -37,7 +37,7 @@ namespace Lantean.QBTMud.Helpers
{
time = TimeSpan.FromSeconds(seconds.Value);
}
catch (OverflowException)
catch
{
return "∞";
}