Fixed provider pool update on automatic search. #2379

custom_lang_pt v1.4.2-beta.2
morpheus65535 3 months ago
parent 90583354bf
commit 88c267f848

@ -82,8 +82,10 @@ def update_pools(f):
args_spec = getfullargspec(f).args
try:
profile_id = kwargs["profile_id"]
except KeyError:
profile_id = args[args_spec.index("profile_id")]
except (IndexError, ValueError):
except (ValueError, IndexError):
profile_id = None
updated = _update_pool(args[args_spec.index("media_type")], profile_id)

Loading…
Cancel
Save