diff --git a/ycast/radiobrowser.py b/ycast/radiobrowser.py index 6665e21..fa50541 100644 --- a/ycast/radiobrowser.py +++ b/ycast/radiobrowser.py @@ -61,7 +61,7 @@ def request(url): def get_station_by_id(uid): - station_json = request('stations/byid/' + str(uid)) + station_json = request('stations/byuuid/' + str(uid)) if station_json and len(station_json): return Station(station_json[0]) else: