Skip to content

Commit

Permalink
Force author to director in CSL JSON export of videoRecording
Browse files Browse the repository at this point in the history
  • Loading branch information
fbennett committed Mar 24, 2018
1 parent d75f7ea commit 7b580bd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion chrome/content/zotero/xpcom/utilities.js
Expand Up @@ -2047,7 +2047,11 @@ Zotero.Utilities = {

creatorType = CSL_NAMES_MAPPINGS[creatorType];
if(!creatorType) continue;


if (zoteroItem.itemType === "videoRecording") {
creatorType = "director";
}

var nameObj = {};
Zotero.Utilities.creatorConvItemToCSLJSON(nameObj, creator);

Expand Down

0 comments on commit 7b580bd

Please sign in to comment.