1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-25 17:17:12 +00:00

fix: if authorizations check are required keyboard interruptions would be swallowed

This commit is contained in:
Smaarn 2020-02-09 10:32:02 +01:00
parent 7c061874fb
commit 908fb55940

View file

@ -205,6 +205,9 @@ def redirect_root():
@custom_auth_basic(check_credentials)
def shutdown():
authorize()
doShutdown()
def doShutdown():
try:
server.stop()
except:
@ -2215,4 +2218,4 @@ try:
args.port) if args.port else str(settings.general.port)) + str(base_url))
server.start()
except KeyboardInterrupt:
shutdown()
doShutdown()