diff --git a/sickbeard/webserve.py b/sickbeard/webserve.py index 7db4ae9d..f49c167d 100644 --- a/sickbeard/webserve.py +++ b/sickbeard/webserve.py @@ -3179,6 +3179,9 @@ class Manage(Home, WebRoot): else: t.info_download_station = '

To have a better experience please set the Download Station alias as download, you can check this setting in the Synology DSM Control Panel > Application Portal. Make sure you allow DSM to be embedded with iFrames too in Control Panel > DSM Settings > Security.


There is more information about this available here.


' + if not sickbeard.TORRENT_PASSWORD == "" and not sickbeard.TORRENT_USERNAME == "": + t.webui_url = re.sub('://', '://' + str(sickbeard.TORRENT_USERNAME) + ':' + str(sickbeard.TORRENT_PASSWORD) + '@' ,t.webui_url) + return t.respond()