Don't allow note on embedded-image attachments
https://github.com/windingwind/zotero-better-notes/issues/212
This commit is contained in:
parent
7ffc509ee6
commit
5a82aa952d
1 changed files with 5 additions and 1 deletions
|
@ -2240,6 +2240,10 @@ Zotero.Item.prototype.setNote = function(text) {
|
|||
throw ("updateNote() can only be called on notes and attachments");
|
||||
}
|
||||
|
||||
if (this.isEmbeddedImageAttachment()) {
|
||||
throw new Error("setNote() cannot be called on embedded-image attachments");
|
||||
}
|
||||
|
||||
if (typeof text != 'string') {
|
||||
throw ("text must be a string in Zotero.Item.setNote() (was " + typeof text + ")");
|
||||
}
|
||||
|
@ -5219,7 +5223,7 @@ Zotero.Item.prototype.fromJSON = function (json, options = {}) {
|
|||
let parentKey = json.parentItem;
|
||||
this.parentKey = parentKey ? parentKey : false;
|
||||
|
||||
if (!this.isAnnotation()) {
|
||||
if (!this.isAnnotation() && !this.isEmbeddedImageAttachment()) {
|
||||
let note = json.note;
|
||||
this.setNote(note !== undefined ? note : "");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue