commit a4d049fe46e9ebaf2932d43433eae561df0c5b0b
parent 79d759fd8d42db9b45de0e9dfdac873fa5b98613
Author: Simon Kornblith <simon@simonster.com>
Date: Tue, 29 Jul 2008 09:27:54 +0000
Fix "Zotero.Ingester.Proxies is undefined" error
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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");