Removed media.resume from Plex webhook to prevent over usage in specific scenarios.

This commit is contained in:
morpheus65535 2021-08-07 18:59:29 -04:00
parent 275aa24f58
commit 28e28fbd5c
1 changed files with 1 additions and 1 deletions

View File

@ -2073,7 +2073,7 @@ class WebHooksPlex(Resource):
parsed_json_webhook = json.loads(json_webhook)
event = parsed_json_webhook['event']
if event not in ['media.play', 'media.resume']:
if event not in ['media.play']:
return '', 204
media_type = parsed_json_webhook['Metadata']['type']