From 38b44cd83d91c3e71e1d9d2a814f96a77cf85fde Mon Sep 17 00:00:00 2001 From: dorian ALKOUM Date: Sun, 28 Jan 2018 23:46:08 +0100 Subject: [PATCH] Allow authentication on older servers (#23) --- resources/lib/downloadutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/downloadutils.py b/resources/lib/downloadutils.py index 242c1c7..6a52b62 100644 --- a/resources/lib/downloadutils.py +++ b/resources/lib/downloadutils.py @@ -257,7 +257,7 @@ class DownloadUtils(): use_https = settings.getSetting('use_https') == 'true' if use_https: - messageData += "&pwd=" + pwd_text + messageData += "&pw=" + pwd_text resp = self.downloadUrl(url, postBody=messageData, method="POST", suppress=True, authenticate=False)