Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cdn
Submodule cdn updated from f8bbcc to 86148e
6 changes: 6 additions & 0 deletions nut/Config.py
Original file line number Diff line number Diff line change
Expand Up @@ -600,6 +600,11 @@ def load(confFile): # pylint: disable=too-many-branches,too-many-statements
except BaseException: # pylint: disable=broad-except
pass

try:
dauth.fw_revision = j['cdn']['dAuth']['fw_revision']
except BaseException: # pylint: disable=broad-except
pass

try:
dauth.baseURL = j['cdn']['dAuth']['baseURL']
except BaseException: # pylint: disable=broad-except
Expand Down Expand Up @@ -865,6 +870,7 @@ def __init__(self):
self.userAgent = None
self.challenge = None
self.sysDigest = None
self.fw_revision = None
self.baseURL = None


Expand Down
Loading