Skip to content

Commit

Permalink
Fix positional-only argument usage in the web app.
Browse files Browse the repository at this point in the history
For #268.
  • Loading branch information
lemon24 committed Jul 26, 2022
1 parent 7246d15 commit 2f6df19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reader/_app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ def entry():
feed_url = request.args['feed']
entry_id = request.args['entry']

entry = reader.get_entry((feed_url, entry_id), default=None)
entry = reader.get_entry((feed_url, entry_id), None)
if not entry:
abort(404)

Expand Down

0 comments on commit 2f6df19

Please sign in to comment.