Bläddra i källkod

No Ticket. Auto refresh filter url compare method needed to escape the urls to compare them.

Aaron Newton 15 år sedan
förälder
incheckning
6b5da71b38

+ 1 - 1
desktop/core/static/js/Source/JFrameFilters/CCS.JFrame.AutoRefresh.js

@@ -67,7 +67,7 @@ var setupAutoRefresh = function(content) {
 
 	//this method compares to urls to see if they match
 	var compareURI = function(one, two) {
-		return new URI(one).toString() == new URI(two).toString();
+		return new URI(unescape(one)).toString() == new URI(unescape(two)).toString();
 	};
 
 	//this method checks a request to see if it's been spoiled