From 44e48700ef024a5decef616e078243bc3816d962 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adomas=20Ven=C4=8Dkauskas?= Date: Mon, 24 Oct 2016 12:39:24 +0300 Subject: [PATCH] Fix connector debug script syntax errors from 24709a9c --- chrome/content/zotero/xpcom/connector/connector.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/xpcom/connector/connector.js b/chrome/content/zotero/xpcom/connector/connector.js index eec94cca5..2c2827bd5 100644 --- a/chrome/content/zotero/xpcom/connector/connector.js +++ b/chrome/content/zotero/xpcom/connector/connector.js @@ -278,7 +278,7 @@ Zotero.Connector_Debug = new function() { */ this.get = function(callback) { Zotero.Debug.get().then(callback); - }); + }; /** * Call a callback with the number of lines of output @@ -316,5 +316,5 @@ Zotero.Connector_Debug = new function() { var reportID = reported[0].getAttribute('reportID'); callback(true, reportID); }); - }); + }; }