Index: channels/surfmusik.py ================================================================== --- channels/surfmusik.py +++ channels/surfmusik.py @@ -1,8 +1,8 @@ # encoding: UTF-8 # api: streamtuner2 -# title: SurfMusik +# title: SurfMusic # description: User collection of streams categorized by region and genre. # author: gorgonz123 # version: 0.5 # type: channel # category: radio @@ -57,12 +57,14 @@ categories = [] titles = dict( genre="Genre", title="Station", playing="Location", bitrate=False, listeners=False ) # Set channel title def __init__(self, parent=None): - self.title = ("SurfMusik", "SurfMusic")[conf.get("surfmusik_lang", "EN") == "EN"] ChannelPlugin.__init__(self, parent) + # title updating is a workaround, because the fixed .meta attribute are read first + self.title = ("SurfMusik", "SurfMusic")[conf.get("surfmusik_lang", "EN") == "EN"] + self.meta["title"] = self.title # just a static list for now def update_categories(self):