Skip to content

Commit

Permalink
small bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yindaheng98 committed Mar 23, 2024
1 parent 908c7e1 commit 7dab0d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion citation_crawler/crawlers/ss.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ async def match_authors(self, paper: SSPaper, authors: AsyncIterable[Dict]) -> A
async for author in authors:
if 'authorId' in author:
if author['authorId'] in authorIds:
ss_author = dblp_names[author['name']]
ss_author = authorIds[author['authorId']]
write_fields = {}
if ss_author.homepage():
write_fields["homepage"] = ss_author.homepage()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name='citation_crawler',
version='2.8',
version='2.8.1',
author='yindaheng98',
author_email='[email protected]',
url='https://github.com/yindaheng98/citation-crawler',
Expand Down

0 comments on commit 7dab0d0

Please sign in to comment.