Skip to content

Commit

Permalink
tags as auto-tags
Browse files Browse the repository at this point in the history
  • Loading branch information
retorquere committed Feb 18, 2019
1 parent 3068180 commit 489e849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BulkMAS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function importer(): any {
const item = new Zotero.Item(itemType)

item.date = article.D || article.Y
item.tags = article.W || []
item.tags = (article.W || []).map(tag => ({ tag, type: 1}))

item.title = article.E.DN
if (article.E.S) item.url = article.E.S[0].U
Expand Down

0 comments on commit 489e849

Please sign in to comment.