From 603388c79d0f0960848f89fe8308e8cd783b1d73 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 2 Jun 2018 02:26:27 -0400 Subject: [PATCH] Add missing quote to error --- chrome/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 index f3aa9b040..6d69991f9 100644 --- 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}'`); } } };