We don´t need the url here

This commit is contained in:
elpatron68 2019-07-27 19:06:55 +02:00
parent ffa727c00f
commit 8116f1b388

View File

@ -7,7 +7,7 @@ def getstations_byname(query):
stations = []
for st in results:
try:
url = rb.playable_station(st['id'])['url']
# url = rb.playable_station(st['id'])['url']
station = {'stationname': st['name'], 'url': url, 'id':st['id']}
stations.append(station)
except: