www

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

commit 603388c79d0f0960848f89fe8308e8cd783b1d73
parent 9220b2d9c2270a91cedc59d7dd52894ddffe1134
Author: Dan Stillman <dstillman@zotero.org>
Date:   Sat,  2 Jun 2018 02:26:27 -0400

Add missing quote to error

Diffstat:
Mchrome/content/zotero/xpcom/api.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/api.js b/chrome/content/zotero/xpcom/api.js @@ -154,7 +154,7 @@ Zotero.API = { return 'groups/' + Zotero.Groups.getGroupIDFromLibraryID(libraryID); default: - throw new Error(`Invalid type '${type}`); + throw new Error(`Invalid type '${type}'`); } } };