Fix error when deleting non-attachment items caused by r1195
This commit is contained in:
parent
937ccaa850
commit
3c60b98d69
|
@ -2061,9 +2061,11 @@ Zotero.Item.prototype.erase = function(deleteChildren){
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clear fulltext cache
|
// Clear fulltext cache
|
||||||
Zotero.Fulltext.clearItemWords(this.getID());
|
if (this.isAttachment()) {
|
||||||
//Zotero.Fulltext.clearItemContent(this.getID());
|
Zotero.Fulltext.clearItemWords(this.getID());
|
||||||
Zotero.Fulltext.purgeUnusedWords();
|
//Zotero.Fulltext.clearItemContent(this.getID());
|
||||||
|
Zotero.Fulltext.purgeUnusedWords();
|
||||||
|
}
|
||||||
|
|
||||||
sql = 'DELETE FROM itemCreators WHERE itemID=' + this.getID() + ";\n";
|
sql = 'DELETE FROM itemCreators WHERE itemID=' + this.getID() + ";\n";
|
||||||
sql += 'DELETE FROM itemNotes WHERE itemID=' + this.getID() + ";\n";
|
sql += 'DELETE FROM itemNotes WHERE itemID=' + this.getID() + ";\n";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user