Add missing quote to error

This commit is contained in:
Dan Stillman 2018-06-02 02:26:27 -04:00
parent 9220b2d9c2
commit 603388c79d

View File

@ -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}'`);
}
}
};