mirror of
https://github.com/home-assistant/core.git
synced 2025-06-26 16:07:08 +00:00
Remove SUPPORT_VOLUME_SET from Fire TV component
Volume control isn't actually implemented, so it shouldn't show as being supported.
This commit is contained in:
parent
74cdf7c347
commit
0e5aa5801a
@ -12,7 +12,7 @@ import voluptuous as vol
|
||||
from homeassistant.components.media_player import (
|
||||
MediaPlayerDevice, PLATFORM_SCHEMA, SUPPORT_NEXT_TRACK, SUPPORT_PAUSE,
|
||||
SUPPORT_PLAY, SUPPORT_PREVIOUS_TRACK, SUPPORT_SELECT_SOURCE, SUPPORT_STOP,
|
||||
SUPPORT_TURN_OFF, SUPPORT_TURN_ON, SUPPORT_VOLUME_SET, )
|
||||
SUPPORT_TURN_OFF, SUPPORT_TURN_ON)
|
||||
from homeassistant.const import (
|
||||
CONF_HOST, CONF_NAME, CONF_PORT, STATE_IDLE, STATE_OFF, STATE_PAUSED,
|
||||
STATE_PLAYING, STATE_STANDBY)
|
||||
@ -25,7 +25,7 @@ _LOGGER = logging.getLogger(__name__)
|
||||
SUPPORT_FIRETV = SUPPORT_PAUSE | \
|
||||
SUPPORT_TURN_ON | SUPPORT_TURN_OFF | SUPPORT_PREVIOUS_TRACK | \
|
||||
SUPPORT_NEXT_TRACK | SUPPORT_SELECT_SOURCE | SUPPORT_STOP | \
|
||||
SUPPORT_VOLUME_SET | SUPPORT_PLAY
|
||||
SUPPORT_PLAY
|
||||
|
||||
CONF_ADBKEY = 'adbkey'
|
||||
CONF_GET_SOURCE = 'get_source'
|
||||
|
Loading…
x
Reference in New Issue
Block a user