diff --git a/citation_crawler/crawlers/ss.py b/citation_crawler/crawlers/ss.py index 856dd89..9a60556 100644 --- a/citation_crawler/crawlers/ss.py +++ b/citation_crawler/crawlers/ss.py @@ -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() diff --git a/setup.py b/setup.py index 1f9ec9b..262e3f8 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name='citation_crawler', - version='2.8', + version='2.8.1', author='yindaheng98', author_email='yindaheng98@gmail.com', url='https://github.com/yindaheng98/citation-crawler',