diff --git a/chrome/content/zotero/import/mendeley/mendeleyImport.js b/chrome/content/zotero/import/mendeley/mendeleyImport.js index 9fb4a2447..4f739c6a2 100644 --- a/chrome/content/zotero/import/mendeley/mendeleyImport.js +++ b/chrome/content/zotero/import/mendeley/mendeleyImport.js @@ -617,7 +617,14 @@ Zotero_Import_Mendeley.prototype._documentToAPIJSON = async function (map, docum } } } - if (tags) parent.tags = tags; + parent.tags = []; + // Add star tag for favorites + if (documentRow.favourite == 'true') { + parent.tags.push('\u2605'); + } + if (tags) { + parent.tags.push(...tags); + } if (collections) parent.collections = collections; // Copy date added/modified to child item