Skip to content

Commit

Permalink
fixed papers_dblp endpoint limit
Browse files Browse the repository at this point in the history
  • Loading branch information
tholzheim committed May 17, 2024
1 parent b9f2c4e commit 5419ba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ceurws/webserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ async def papers_dblp():
"""
self.wdSync.dblpEndpoint.dblp_papers.load()
papers = self.wdSync.dblpEndpoint.dblp_papers.papers
records = [p.to_json() for p in papers[:5]]
records = [p.to_json() for p in papers]
lod = [orjson.loads(json_str) for json_str in records]
return ORJSONResponse(lod)

Expand Down

0 comments on commit 5419ba1

Please sign in to comment.