Skip to content

Commit

Permalink
fixes #189
Browse files Browse the repository at this point in the history
  • Loading branch information
retorquere committed May 19, 2015
1 parent 44c9d6e commit 6cfb7e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ Zotero.BetterBibTeX.init = ->
Zotero.ZotFile.wildcardTable = ((original) ->
return (item) ->
table = original.apply(this, arguments)
table['%b'] = Zotero.BetterBibTeX.keymanager.get(item).citekey if item.isAttachment() || item.isNote()
table['%b'] = Zotero.BetterBibTeX.keymanager.get(item).citekey unless item.isAttachment() || item.isNote()
return table
)(Zotero.ZotFile.wildcardTable)

Expand Down

0 comments on commit 6cfb7e9

Please sign in to comment.