2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

Apply same test for string length for both ordinal operations

This commit is contained in:
Xjph 2023-01-19 19:20:58 -03:30
parent 52aa9fb1e5
commit 565aaf0838

View File

@ -86,7 +86,7 @@ namespace Observatory.Explorer
if (new char[] { 'A', '0' }.Contains(ordChar))
{
ordinal = DecrementOrdinal(ordinal[..^1]);
ordinal = DecrementOrdinal(ordinal.Length == 1 ? " " : String.Empty + ordinal[..^1]);
ordChar = (char)(ordChar + 10);
}