Fix error message in previous commit
This commit is contained in:
parent
539ac39d70
commit
055f641188
1 changed files with 1 additions and 1 deletions
|
@ -1223,7 +1223,7 @@ Zotero.Item.prototype.save = function() {
|
|||
if (this.libraryID
|
||||
&& ((e.indexOf && e.indexOf('fki_items_libraryID_libraries_libraryID') != -1)
|
||||
|| (!Zotero.Libraries.exists(this.libraryID)))) {
|
||||
var msg = "Library " + this.libraryID + " for item " + this.key;
|
||||
var msg = "Library " + this.libraryID + " for item " + this.key + " not found";
|
||||
var e = new Zotero.Error(msg, "MISSING_OBJECT");
|
||||
throw (e);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue