Skip to content

Commit

Permalink
Merge pull request #857 from gitnnolabs/fix_metadata_aoi
Browse files Browse the repository at this point in the history
Utiliza o ano do issue para produzir o "source" para o protocolo OAI.
  • Loading branch information
gitnnolabs authored Sep 3, 2024
2 parents 56e6d44 + a69e61f commit 9973bf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion article/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def source(self):
"""
leg_dict = {
"title": self.journal.title if self.journal else "",
"pubdate": str(self.pub_date_year) if self.pub_date_year else "",
"pubdate": self.issue.year if self.issue else "",
"volume": self.issue.volume if self.issue else "",
"number": self.issue.number if self.issue else "",
"fpage": self.first_page,
Expand Down

0 comments on commit 9973bf3

Please sign in to comment.