Fix name of emby media player (#32183)
* Fix name of emby media player * Remove client name from entity_id
This commit is contained in:
parent
ed461a0ad8
commit
58de7fe9a3
1 changed files with 1 additions and 3 deletions
|
@ -190,9 +190,7 @@ class EmbyDevice(MediaPlayerDevice):
|
|||
@property
|
||||
def name(self):
|
||||
"""Return the name of the device."""
|
||||
return (
|
||||
f"Emby - {self.device.client} - {self.device.name}" or DEVICE_DEFAULT_NAME
|
||||
)
|
||||
return f"Emby {self.device.name}" or DEVICE_DEFAULT_NAME
|
||||
|
||||
@property
|
||||
def should_poll(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue