commit 7acd6f6722e2e081bf469f60fbd45786cb054e64
parent 5057da9ed3bb2cbd13579c8790cd756549133353
Author: Simon Kornblith <simon@simonster.com>
Date: Sun, 2 Oct 2011 19:43:41 +0000
Fix bustage
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/utilities_translate.js b/chrome/content/zotero/xpcom/utilities_translate.js
@@ -442,7 +442,7 @@ Zotero.Utilities.Translate.prototype._convertURL = function(url) {
var m = hostPortRe.exec(resolved);
if(!m) {
throw new Error("Invalid URL supplied for HTTP request: "+url);
- } else {
+ } else if(this._translate.document && this._translate.document.location) {
var loc = this._translate.document.location;
if(this._translate._currentState !== "translate" && doc
&& (m[0].toLowerCase() !== loc.protocol.toLowerCase()