no default values for 'protocol' and 'domain' config fields
This commit is contained in:
parent
056dec231d
commit
1c85848195
1 changed files with 2 additions and 2 deletions
|
|
@ -37,8 +37,8 @@ class GazelleBackend(BaseBackend, ICapTorrent):
|
||||||
|
|
||||||
CONFIG = {'username': BaseBackend.ConfigField(description='Username on website'),
|
CONFIG = {'username': BaseBackend.ConfigField(description='Username on website'),
|
||||||
'password': BaseBackend.ConfigField(description='Password of account', is_masked=True),
|
'password': BaseBackend.ConfigField(description='Password of account', is_masked=True),
|
||||||
'protocol': BaseBackend.ConfigField(description='Protocol to use', default='https'),
|
'protocol': BaseBackend.ConfigField(description='Protocol to use ("http" or "https")'),
|
||||||
'domain': BaseBackend.ConfigField(description='Domain', default='ssl.what.cd'),
|
'domain': BaseBackend.ConfigField(description='Domain (example "ssl.what.cd")'),
|
||||||
}
|
}
|
||||||
_browser = None
|
_browser = None
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue