Преглед изворни кода

fix issue with Tab names after F5 reload (#1885)

CauseFX пре 3 година
родитељ
комит
a9cc53e56d
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      js/functions.js

+ 1 - 1
js/functions.js

@@ -531,7 +531,7 @@ function cleanHash(hash){
     return hash.replaceAll('%20','-');
 }
 function dirtyHash(hash){
-    hash = hash.replace('-','%20');
+    hash = hash.replaceAll('-','%20');
     return decodeURI(hash);
 }
 // What the hell is this?  I don't remember this lol