Apply stream name filtering logic also to HTTP streams
This commit is contained in:
parent
f156e9c199
commit
2c8099e7ae
1 changed files with 1 additions and 0 deletions
|
@ -360,6 +360,7 @@ class MusicMpdPlugin(MusicPlugin):
|
|||
track = self._exec('currentsong', return_status=False)
|
||||
if 'title' in track and ('artist' not in track
|
||||
or not track['artist']
|
||||
or re.search('^https?://', track['file'])
|
||||
or re.search('^tunein:', track['file'])):
|
||||
m = re.match('^\s*(.+?)\s+-\s+(.*)\s*$', track['title'])
|
||||
if m and m.group(1) and m.group(2):
|
||||
|
|
Loading…
Reference in a new issue