We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9604a91 commit c612467Copy full SHA for c612467
1 file changed
server/workers/api/src/apis/export.py
@@ -36,13 +36,9 @@ def transform2bibtex(metadata):
36
fields["doi"] = doi
37
if url != "":
38
fields["url"] = url
39
- if entrytype == "article":
40
- if published_in != "":
41
- fields["journal"] = published_in
42
- else:
43
- entrytype = "misc"
44
if entrytype == "misc" and published_in != "":
45
entrytype = "article"
+ fields["journal"] = published_in
46
if entrytype == "book":
47
fields["publisher"] = published_in
48
if entrytype == "inbook":
0 commit comments