Fixed host/port specification for first time setup

This commit is contained in:
Harvey Tindall 2020-05-24 15:24:23 +01:00
parent 72ec233634
commit cb07cbb5bf
1 changed files with 2 additions and 2 deletions

View File

@ -174,8 +174,8 @@ else:
from waitress import serve
if first_run:
import jellyfin_accounts.setup
host = '0.0.0.0'
port = 8056
host = config['ui']['host']
port = config['ui']['port']
log.info('Starting web UI for first run setup...')
serve(app,
host=host,