Skip to content
This repository was archived by the owner on May 26, 2022. It is now read-only.

Commit d8ccfea

Browse files
authored
cleanup & fixes
1 parent abcfa6b commit d8ccfea

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

custom_components/plex_assistant/__init__.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
from homeassistant.config_entries import ConfigEntry
1212
from homeassistant.core import Config, HomeAssistant
13-
from homeassistant.components.plex.services import get_plex_server
1413
from homeassistant.components.zeroconf import async_get_instance
1514

1615
import os
@@ -112,7 +111,7 @@ def handle_input(call):
112111
pa.update_libraries()
113112

114113
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)
116115

117116
_LOGGER.debug("PA Devices: %s", pa.devices)
118117
if device[1] < 60:
@@ -123,7 +122,7 @@ def handle_input(call):
123122
device = pa.devices[device[0]]
124123

125124
if command["control"]:
126-
remote_control(hass, zeroconf, command["control"], device)
125+
remote_control(hass, zeroconf, command["control"], device, jump_amount)
127126
return
128127

129128
try:
@@ -140,7 +139,7 @@ def handle_input(call):
140139

141140
if getattr(media, "TYPE", None) == "episode":
142141
episodes = media.show().episodes()
143-
episodes = episodes[episodes.index(media):]
142+
episodes = episodes[episodes.index(media):episodes.index(media) + 20]
144143
media = pa.server.createPlayQueue(episodes, shuffle=shuffle)
145144
elif getattr(media, "TYPE", None) in ["artist", "album"]:
146145
tracks = media.tracks()
@@ -150,6 +149,8 @@ def handle_input(call):
150149
tracks = tracks[tracks.index(media):]
151150
media = pa.server.createPlayQueue(tracks, shuffle=shuffle)
152151
elif not getattr(media, "TYPE", None) == "playqueue":
152+
if isinstance(media, list):
153+
media = media[:20]
153154
media = pa.server.createPlayQueue(media, shuffle=shuffle)
154155

155156
payload = '%s{"playqueue_id": %s, "type": "%s"}' % (

0 commit comments

Comments
 (0)