Fix properToProxy() translator error (regression from merge)

This commit is contained in:
Dan Stillman 2008-09-01 04:25:40 +00:00
parent 19c3ddeeff
commit 65eff3cf32

View File

@ -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)) {