= Localization and edge-case updating for stub

This commit is contained in:
Matthew Cech
2019-04-12 21:42:18 -07:00
parent a2de367896
commit bc670c4811
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -91,7 +91,7 @@ public class Localizer
return input;
String value = stringStore.GetKey(input);
if(value.length() < 1)
if(value == null || value.length() < 1)
return input;
return value;