From a362caebacd1e826161ea11b982f444263701894 Mon Sep 17 00:00:00 2001 From: RaidMax Date: Thu, 14 Feb 2019 08:42:14 -0600 Subject: [PATCH] fix for T6 guid length including sign --- SharedLibraryCore/Utilities.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SharedLibraryCore/Utilities.cs b/SharedLibraryCore/Utilities.cs index aa739937e..3c757e28b 100644 --- a/SharedLibraryCore/Utilities.cs +++ b/SharedLibraryCore/Utilities.cs @@ -268,7 +268,7 @@ namespace SharedLibraryCore str = str.Substring(0, Math.Min(str.Length, 16)); long id; - if (str.Length <= 10) + if (str.Length <= 11) // 10 numeric characters + signed character { if (long.TryParse(str, NumberStyles.Integer, CultureInfo.InvariantCulture, out id)) {