From e71bed5297a42f0e4d15e63f045642b6f9c59ad8 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Tue, 21 Dec 2010 05:50:32 +0000 Subject: [PATCH] fix minor error --- chrome/content/zotero/xpcom/integration_worker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/integration_worker.js b/chrome/content/zotero/xpcom/integration_worker.js index 81d8255eaa..1e92da24e8 100644 --- a/chrome/content/zotero/xpcom/integration_worker.js +++ b/chrome/content/zotero/xpcom/integration_worker.js @@ -52,7 +52,7 @@ onmessage = function(event) { close(fd); // extract message - string = buf.readString(); + var string = buf.readString(); var parts = string.match(/^([^ \n]*) ([^ \n]*)(?: ([^\n]*))?\n?$/); if(!parts) { postMessage(["Exception", "Integration Worker: Invalid input received: "+string]);