mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-07-01 08:23:42 -04:00
Apply same test for string length for both ordinal operations
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user