Skip to content

Commit

Permalink
Merge pull request #14 from ror-community/202412-fix-member-display
Browse files Browse the repository at this point in the history
Update member view to use new DOI format in the API.
  • Loading branch information
adambuttrick authored Dec 5, 2024
2 parents 93f7791 + 5c66ac8 commit 1cd764f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/member_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def count_funders(member_id, rows=1000):
if funders:
for funder_id, count_works in funders.items():
funder_id = funder_id.replace(
'http://dx.doi.org/10.13039/', '')
'https://doi.org/10.13039/', '')
funder_counts[funder_id] = count_works
return funder_counts
return None
Expand Down

0 comments on commit 1cd764f

Please sign in to comment.