Przeglądaj źródła

More flexible rules to compare texts with previous references (#1122)

Maurice Doison 2 lat temu
rodzic
commit
e7d3d7a94c
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      hxd/res/DynamicText.hx

+ 1 - 1
hxd/res/DynamicText.hx

@@ -96,7 +96,7 @@ class DynamicText {
 			onMissing(path,"is no longer used");
 			return null;
 		}
-		if( ref != null && ref.innerHTML != StringTools.trim(strOld) ) {
+		if( ref != null && StringTools.trim(ref.innerHTML) != StringTools.trim(strOld) ) {
 			onMissing(path,"ignored since has changed");
 			return null;
 		}