From 0a1a691c73d2b6b9163e2ec6b0fadd84b89d93ab Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Sun, 7 Jan 2018 08:28:06 -0800 Subject: [PATCH] Fix Plex URL notification parameter --- plexpy/notification_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/notification_handler.py b/plexpy/notification_handler.py index 0111a058..0fc94edb 100644 --- a/plexpy/notification_handler.py +++ b/plexpy/notification_handler.py @@ -517,7 +517,7 @@ def build_media_notify_params(notify_action=None, session=None, timeline=None, m remaining_duration = duration - view_offset # Build Plex URL - notify_params['plex_url'] = '{web_url}#!/server/{pms_identifier}/details?key=%2Flibrary%2Fnotify_params%2F{rating_key}'.format( + notify_params['plex_url'] = '{web_url}#!/server/{pms_identifier}/details?key=%2Flibrary%2Fmetadata%2F{rating_key}'.format( web_url=plexpy.CONFIG.PMS_WEB_URL, pms_identifier=plexpy.CONFIG.PMS_IDENTIFIER, rating_key=rating_key)