From a4d049fe46e9ebaf2932d43433eae561df0c5b0b Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Tue, 29 Jul 2008 09:27:54 +0000 Subject: [PATCH] Fix "Zotero.Ingester.Proxies is undefined" error --- 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 index 08233aee4..3dc486ea8 100644 --- a/chrome/content/zotero/xpcom/utilities.js +++ b/chrome/content/zotero/xpcom/utilities.js @@ -620,7 +620,7 @@ Zotero.Utilities.Ingester.HTTP.prototype.doGet = function(urls, processor, done, Zotero.Utilities.Ingester.HTTP.prototype.doPost = function(url, body, onDone, requestContentType, responseCharset) { if(this.translate.locationIsProxied) { - url = Zotero.Ingester.Proxies.properToProxy(url); + url = Zotero.Proxies.properToProxy(url); } if(!Zotero.Utilities.Ingester._protocolRe.test(url)) { throw("invalid URL in processDocuments");