Publish empty cover topic if artUrl is not found in MQTT response
This commit is contained in:
parent
bb397847ce
commit
f61f7618bc
1 changed files with 1 additions and 0 deletions
|
@ -398,6 +398,7 @@ class HassUserClient(HassClient):
|
|||
|
||||
artUrl = re.compile(r"mpris:artUrl\s+file://(.*)").search(out)
|
||||
if not artUrl:
|
||||
self.publish(self.cover_topic, "")
|
||||
return
|
||||
|
||||
art = artUrl.group(1)
|
||||
|
|
Loading…
Add table
Reference in a new issue