10
10
11
11
from homeassistant .config_entries import ConfigEntry
12
12
from homeassistant .core import Config , HomeAssistant
13
- from homeassistant .components .plex .services import get_plex_server
14
13
from homeassistant .components .zeroconf import async_get_instance
15
14
16
15
import os
@@ -112,7 +111,7 @@ def handle_input(call):
112
111
pa .update_libraries ()
113
112
114
113
device = fuzzy (command ["device" ] or default_device , pa .device_names )
115
- device = run_start_script (hass , pa , command , start_script , device )
114
+ device = run_start_script (hass , pa , command , start_script , device , default_device )
116
115
117
116
_LOGGER .debug ("PA Devices: %s" , pa .devices )
118
117
if device [1 ] < 60 :
@@ -123,7 +122,7 @@ def handle_input(call):
123
122
device = pa .devices [device [0 ]]
124
123
125
124
if command ["control" ]:
126
- remote_control (hass , zeroconf , command ["control" ], device )
125
+ remote_control (hass , zeroconf , command ["control" ], device , jump_amount )
127
126
return
128
127
129
128
try :
@@ -140,7 +139,7 @@ def handle_input(call):
140
139
141
140
if getattr (media , "TYPE" , None ) == "episode" :
142
141
episodes = media .show ().episodes ()
143
- episodes = episodes [episodes .index (media ):]
142
+ episodes = episodes [episodes .index (media ):episodes . index ( media ) + 20 ]
144
143
media = pa .server .createPlayQueue (episodes , shuffle = shuffle )
145
144
elif getattr (media , "TYPE" , None ) in ["artist" , "album" ]:
146
145
tracks = media .tracks ()
@@ -150,6 +149,8 @@ def handle_input(call):
150
149
tracks = tracks [tracks .index (media ):]
151
150
media = pa .server .createPlayQueue (tracks , shuffle = shuffle )
152
151
elif not getattr (media , "TYPE" , None ) == "playqueue" :
152
+ if isinstance (media , list ):
153
+ media = media [:20 ]
153
154
media = pa .server .createPlayQueue (media , shuffle = shuffle )
154
155
155
156
payload = '%s{"playqueue_id": %s, "type": "%s"}' % (
0 commit comments