commit 68f7f933c2bc76434911bb6cb6938d928dca92fa parent a1cd958cd6032bf0d159e4940041a7cc49a621b3 Author: Dan Stillman <dstillman@zotero.org> Date: Mon, 1 Sep 2008 04:25:40 +0000 Fix properToProxy() translator error (regression from merge) Diffstat:
| M | chrome/content/zotero/xpcom/utilities.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/utilities.js b/chrome/content/zotero/xpcom/utilities.js @@ -703,7 +703,7 @@ Zotero.Utilities.Translate.prototype._convertURL = function(url) { const fileRe = /^[^:]*/; if(this.translate.locationIsProxied) { - url = Zotero.Ingester.ProxyMonitor.properToProxy(url); + url = Zotero.Proxies.properToProxy(url); } if(protocolRe.test(url)) return url; if(!fileRe.test(url)) {