mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-03-05 19:23:44 +08:00
no log: update supersubtitles.py comments
This commit is contained in:
parent
7040fbc071
commit
4c063bc682
1 changed files with 5 additions and 5 deletions
|
@ -391,8 +391,8 @@ class SuperSubtitlesProvider(Provider, ProviderSubtitleArchiveMixin):
|
|||
results = None
|
||||
|
||||
'''
|
||||
The result will be a JSON like this:
|
||||
[{
|
||||
In order to work, the result should be a JSON like this:
|
||||
{
|
||||
"10": {
|
||||
"language":"Angol",
|
||||
"nev":"The Flash (Season 5) (1080p)",
|
||||
|
@ -404,14 +404,14 @@ class SuperSubtitlesProvider(Provider, ProviderSubtitleArchiveMixin):
|
|||
"feltolto":"J1GG4",
|
||||
"pontos_talalat":"111",
|
||||
"evadpakk":"1"
|
||||
}
|
||||
},...]
|
||||
}, ...
|
||||
}
|
||||
'''
|
||||
|
||||
subtitle_list = {}
|
||||
season_pack_list = {}
|
||||
|
||||
# Check the results:
|
||||
# Check the results. If a list or a Nonetype is returned, ignore it:
|
||||
if results and not isinstance(results, list):
|
||||
for result in results.values():
|
||||
'''
|
||||
|
|
Loading…
Reference in a new issue