mirror of https://github.com/morpheus65535/bazarr
Added a validation of existing credentials for opensubtitles.com provider.
This commit is contained in:
parent
c2059584db
commit
c05db9f8c5
|
@ -124,6 +124,9 @@ class OpenSubtitlesComProvider(ProviderRetryMixin, Provider):
|
|||
languages.update(set(Language.rebuild(l, forced=True) for l in languages))
|
||||
|
||||
def __init__(self, username=None, password=None, use_hash=True, api_key=None):
|
||||
if not all((username, password)):
|
||||
raise ConfigurationError('Username and password must be specified')
|
||||
|
||||
if not api_key:
|
||||
raise ConfigurationError('Api_key must be specified')
|
||||
|
||||
|
|
Loading…
Reference in New Issue