fix: radios don't have path
This commit is contained in:
parent
a6991943c5
commit
6524212140
@ -306,7 +306,7 @@ class MusicDatabase:
|
|||||||
id = music_dict['id']
|
id = music_dict['id']
|
||||||
title = music_dict['title']
|
title = music_dict['title']
|
||||||
type = music_dict['type']
|
type = music_dict['type']
|
||||||
path = music_dict['path']
|
path = music_dict['path'] if 'path' in music_dict else ''
|
||||||
keywords = music_dict['keywords']
|
keywords = music_dict['keywords']
|
||||||
tags = ",".join(list(dict.fromkeys(music_dict['tags']))) + ","
|
tags = ",".join(list(dict.fromkeys(music_dict['tags']))) + ","
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user