Browse Source

Auto-detected hostname should be lowercased

https://forums.sabnzbd.org/viewtopic.php?f=3&t=23352
pull/1141/head
Safihre 7 years ago
parent
commit
ecc334360a
  1. 2
      sabnzbd/__init__.py

2
sabnzbd/__init__.py

@ -313,7 +313,7 @@ def initialize(pause_downloader=False, clean_up=False, evalSched=False, repair=0
# Add hostname to the whitelist
if not cfg.host_whitelist():
cfg.host_whitelist.set(socket.gethostname())
cfg.host_whitelist.set(socket.gethostname().lower())
# Do repair if requested
if check_repair_request():

Loading…
Cancel
Save