Forráskód Böngészése

Revert "Add possibility for station logos"

This reverts commit bf6687ab9b5779a2f2f7c5b8bf5627c21df4d16d.
Tobias Pankner 2 éve
szülő
commit
19f68a7945
1 módosított fájl, 4 hozzáadás és 5 törlés
  1. 4 5
      ycast/my_stations.py

+ 4 - 5
ycast/my_stations.py

@@ -12,12 +12,12 @@ config_file = 'stations.yml'
 
 
 class Station:
-    def __init__(self, uid, name, url, category, icon):
+    def __init__(self, uid, name, url, category):
         self.id = generic.generate_stationid_with_prefix(uid, ID_PREFIX)
         self.name = name
         self.url = url
         self.tag = category
-        self.icon = icon
+        self.icon = None
 
     def to_vtuner(self):
         return vtuner.Station(self.id, self.name, self.tag, self.url, self.icon, self.tag, None, None, None, None)
@@ -70,10 +70,9 @@ def get_stations_by_category(category):
     stations = []
     if my_stations_yaml and category in my_stations_yaml:
         for station_name in my_stations_yaml[category]:
-            station_url = my_stations_yaml[category][station_name]['url']
-            station_icon = my_stations_yaml[category][station_name]['icon']
+            station_url = my_stations_yaml[category][station_name]
             station_id = str(get_checksum(station_name + station_url)).upper()
-            stations.append(Station(station_id, station_name, station_url, category, station_icon))
+            stations.append(Station(station_id, station_name, station_url, category))
     return stations