Update kill_outsider_stream.py

This commit is contained in:
blacktwin 2017-10-20 15:17:52 -04:00 committed by GitHub
parent 39ea6975eb
commit 2220548398

View File

@ -36,7 +36,7 @@ plex = PlexServer(PLEX_URL, PLEX_TOKEN, session=sess)
def kill_session(user):
for session in plex.sessions():
# Check for users stream
if session.usernames[0] in user and session.player[0].local is False:
if session.usernames[0] == user and session.player[0].local is False:
title = (session.grandparentTitle + ' - ' if session.type == 'episode' else '') + session.title
print('{user} is watching {title} and they might be asleep.'.format(user=user, title=title))
session.stop(reason=MESSAGE)