فهرست منبع

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

Aaron Newton 15 سال پیش
والد
کامیت
6b5da71b38
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      desktop/core/static/js/Source/JFrameFilters/CCS.JFrame.AutoRefresh.js

+ 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