mirror of
https://github.com/Viren070/MediaFusion.git
synced 2025-12-01 23:21:11 +01:00
Fix typo
This commit is contained in:
+2
-2
@@ -198,9 +198,9 @@ def search_imdb(title: str, year: int, retry: int = 5) -> dict:
|
||||
return {}
|
||||
|
||||
|
||||
def parse_tv_stream_data(stream: list[TVStreams]) -> list[Stream]:
|
||||
def parse_tv_stream_data(streams: list[TVStreams]) -> list[Stream]:
|
||||
stream_list = []
|
||||
for stream in stream:
|
||||
for stream in streams:
|
||||
if stream.behaviorHints.get("is_redirect", False):
|
||||
response = requests.get(
|
||||
stream.url,
|
||||
|
||||
Reference in New Issue
Block a user