From 565aaf083851c441e9c1e9ebc4db4a9e9d9884ef Mon Sep 17 00:00:00 2001 From: Xjph Date: Thu, 19 Jan 2023 19:20:58 -0330 Subject: [PATCH] Apply same test for string length for both ordinal operations --- ObservatoryExplorer/Explorer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ObservatoryExplorer/Explorer.cs b/ObservatoryExplorer/Explorer.cs index 41be547..968fbc4 100644 --- a/ObservatoryExplorer/Explorer.cs +++ b/ObservatoryExplorer/Explorer.cs @@ -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); }