Skip to content

Commit 3663566

Browse files
committed
Update title search for Animeunity
1 parent c454a7d commit 3663566

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

StreamingCommunity/Api/Site/animeunity/site.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,14 @@ def title_search(query: str) -> int:
9191
'title': query,
9292
'type': False,
9393
'year': False,
94-
'order': 'Lista A-Z',
94+
'order': False,
9595
'status': False,
9696
'genres': False,
9797
'offset': 0,
9898
'dubbed': False,
99-
'season': False
99+
'season': False,
100100
}
101-
response2 = create_client_curl(headers=headers).post(f'{site_constant.FULL_URL}/archivio/get-animes', cookies=cookies, data=json_data)
101+
response2 = create_client_curl(headers=headers).post(f'{site_constant.FULL_URL}/archivio/get-animes', cookies=cookies, json=json_data)
102102
response2.raise_for_status()
103103
process_results(response2.json().get('records', []), seen_titles, media_search_manager, choices)
104104

config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@
4545
"param_subtitles": ["-c:s", "webvtt"],
4646
"param_final": ["-c", "copy"],
4747
"force_resolution": "Best",
48-
"extension": "mkv"
48+
"extension": "mp4"
4949
},
5050
"REQUESTS": {
5151
"verify": false,
5252
"timeout": 15,
53-
"max_retry": 3
53+
"max_retry": 5
5454
},
5555
"HOOKS": {
5656
"pre_run": [],

0 commit comments

Comments
 (0)