Skip to content

Commit

Permalink
v2.0.1
Browse files Browse the repository at this point in the history
- Attempting to fetch streams for non-MAL ID content
  • Loading branch information
SageTendo committed Feb 23, 2024
1 parent 805f2c0 commit b32d7f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/routes/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

@stream_bp.route('/<user_id>/stream/<content_type>/<content_id>.json')
async def addon_stream(user_id: str, content_type: str, content_id: str):
if IMDB_ID_PREFIX in content_id:
if MAL_ID_PREFIX not in content_id:
return respond_with({})

if content_type != 'movie':
Expand Down

0 comments on commit b32d7f6

Please sign in to comment.