Open Scuz3000 opened 2 years ago
That's true, you can try this
in common.py change lines 107-108
if "group-title" in params and params['group-title'].strip() != "":
self.group_title = params['group-title'].strip().replace(";", " ").replace(" ", " ")
to
if "group-title" in params and params['group-title'].strip() != "":
self.group_title = params['group-title'].strip().replace(";", " ").replace(" ", " ")
else:
self.group_title = 'Untitled'
That's true, you can try this
in common.py change lines 107-108
if "group-title" in params and params['group-title'].strip() != "": self.group_title = params['group-title'].strip().replace(";", " ").replace(" ", " ")
to
if "group-title" in params and params['group-title'].strip() != "": self.group_title = params['group-title'].strip().replace(";", " ").replace(" ", " ") else: self.group_title = 'Untitled'
Thanks for the reply, but it doesn't look like I can edit that file while booting from a LiveUSB, a situation I'm unfortunately stuck with at the moment.
I found what might be a potential bug in Hypnotix.
So when all the channels in a playlist have group titles, the channels are grouped accordingly. When none of the channels have group titles, channels are displayed un-grouped (obviously!).
But when some of the channels in a playlist have group titles and others do not, the ones that don't have group titles are not displayed at all.