mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 02:26:53 -07:00
Merge pull request #1893 from clinton-hall/nightly
Fix issue with no Require_lan set #1856 (#1892)
This commit is contained in:
commit
d23c2c2d3a
1 changed files with 1 additions and 1 deletions
|
@ -398,7 +398,7 @@ def configure_general():
|
|||
FFMPEG_PATH = CFG['General']['ffmpeg_path']
|
||||
SYS_PATH = CFG['General']['sys_path']
|
||||
CHECK_MEDIA = int(CFG['General']['check_media'])
|
||||
REQUIRE_LAN = CFG['General']['require_lan'].split(',') or None
|
||||
REQUIRE_LAN = None if not CFG['General']['require_lan'] else CFG['General']['require_lan'].split(',')
|
||||
SAFE_MODE = int(CFG['General']['safe_mode'])
|
||||
NOEXTRACTFAILED = int(CFG['General']['no_extract_failed'])
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue