This commit is contained in:
jnolti 2021-12-19 20:53:59 +01:00 committed by GitHub
commit 939cf464d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -1,7 +1,7 @@
import logging
import hashlib
import yaml
import oyaml as yaml
import ycast.vtuner as vtuner
import ycast.generic as generic

View file

@ -133,6 +133,8 @@ def upstream(path):
return my_stations_landing()
if 'loginXML.asp' in path:
return landing()
if 'LoginXML.asp' in path:
return landing()
logging.error("Unhandled upstream query (/setupapp/%s)", path)
abort(404)