= Cleaning up edge cases

This commit is contained in:
Matthew Cech
2019-04-13 12:34:35 -07:00
parent 330e0c2e08
commit 0912034c2f
9 changed files with 30 additions and 10 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ public class Localizer
return input;
String value = stringStore.GetKey(input);
if(value == null || value.length() < 1)
if(value == null || value.trim().length() < 1)
return input;
return value;