From f46e05f9dc8b0bc9c13e2a474b440be0ffae3dfe Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Thu, 28 Jul 2011 19:36:14 +0000 Subject: [PATCH] Convert domain to lowercase after proxy lookup --- chrome/content/zotero/xpcom/proxy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/proxy.js b/chrome/content/zotero/xpcom/proxy.js index 075d4d695..be253d8ff 100644 --- a/chrome/content/zotero/xpcom/proxy.js +++ b/chrome/content/zotero/xpcom/proxy.js @@ -954,7 +954,7 @@ Zotero.Proxies.DNS = new function() { domain.pop(); } - domain = domain.join("."); + domain = domain.join(".").toLowerCase(); Zotero.debug("Proxies: "+ip+" PTR "+domain); inStream.close();