Removed arg

This commit is contained in:
blacktwin 2017-10-06 08:22:20 -04:00 committed by GitHub
parent 693322e7ab
commit d4bda6daf8

View File

@ -6,10 +6,7 @@ PlexPy > Settings > Notification Agents > Scripts > Bell icon:
PlexPy > Settings > Notification Agents > Scripts > Gear icon: PlexPy > Settings > Notification Agents > Scripts > Gear icon:
Playback Start: kill_trans_pause.py Playback Start: kill_trans_pause.py
PlexPy > Settings > Notifications > Script > Script Arguments:
{session_key}
""" """
import requests import requests
import platform import platform
@ -72,8 +69,8 @@ if __name__ == '__main__':
for s in response['MediaContainer']['Video']: for s in response['MediaContainer']['Video']:
part = s['Media'][0]['Part'][0] part = s['Media'][0]['Part'][0]
try: try:
if s['sessionKey'] == sys.argv[1] and part['decision'] == 'transcode' \ if part['decision'] == 'transcode' and s['User']['title'] not in USER_IGNORE
and s['User']['title'] not in USER_IGNORE and s['Player']['state'] == 'paused': and s['Player']['state'] == 'paused':
print("Killing {}'s stream for pausing a transcode stream of {}".format(s['User']['title'], s['title'])) print("Killing {}'s stream for pausing a transcode stream of {}".format(s['User']['title'], s['title']))
kill_stream(s['Session']['id'], MESSAGE) kill_stream(s['Session']['id'], MESSAGE)
except Exception: except Exception: