www

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

commit 44e48700ef024a5decef616e078243bc3816d962
parent 24709a9c4b35df2bd28a381f2e90cfa6bebc8f06
Author: Adomas VenĨkauskas <adomas.ven@gmail.com>
Date:   Mon, 24 Oct 2016 12:39:24 +0300

Fix connector debug script syntax errors from 24709a9c

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