浏览代码

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