Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ycast/my_stations.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging
import hashlib

import yaml
import oyaml as yaml

import ycast.vtuner as vtuner
import ycast.generic as generic
Expand Down
2 changes: 2 additions & 0 deletions ycast/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down