Don't allow note on embedded-image attachments

https://github.com/windingwind/zotero-better-notes/issues/212
This commit is contained in:
Dan Stillman 2022-11-19 04:54:55 -05:00
parent 89bc094690
commit deb17d450e

View file

@ -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 + ")");
}