Index: channels/live365.py ================================================================== --- channels/live365.py +++ channels/live365.py @@ -97,10 +97,12 @@ # Group entries before adding them ls = [] for i,row in groupby(rx.findall(html), self.group_by_station): row = dict(row) ls.append({ + "status": (None if row["listenerAccess"] == "PUBLIC" else gtk.STOCK_STOP), + "deleted": row["status"] != "OK", "name": row["stationName"], "title": row["title"], "playing": "n/a", "id": row["id"], "access": row["listenerAccess"],