www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit e71bed5297a42f0e4d15e63f045642b6f9c59ad8
parent 493b3225f6b9455131eb89ea58c7c15284bb76d9
Author: Simon Kornblith <simon@simonster.com>
Date:   Tue, 21 Dec 2010 05:50:32 +0000

fix minor error


Diffstat:
Mchrome/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 @@ -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]);