From 53cfb29130814b4d31611d4a7d842c6940b6b4a5 Mon Sep 17 00:00:00 2001 From: SuperPotatoMen Date: Mon, 13 Mar 2017 00:29:38 +0100 Subject: [PATCH] Fix for #1236 Fixing the broken link to app.plex.tv for the "view in plex" button --- Ombi.Helpers/PlexHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ombi.Helpers/PlexHelper.cs b/Ombi.Helpers/PlexHelper.cs index 6282687de..919c2424f 100644 --- a/Ombi.Helpers/PlexHelper.cs +++ b/Ombi.Helpers/PlexHelper.cs @@ -99,7 +99,7 @@ namespace Ombi.Helpers public static string GetPlexMediaUrl(string machineId, string mediaId) { var url = - $"https://app.plex.tv/web/app#!/server/{machineId}/details/%2Flibrary%2Fmetadata%2F{mediaId}"; + $"https://app.plex.tv/web/app#!/server/{machineId}/details?key=library%2Fmetadata%2F{mediaId}"; return url; } @@ -116,4 +116,4 @@ namespace Ombi.Helpers public int SeasonNumber { get; set; } public int EpisodeNumber { get; set; } } -} \ No newline at end of file +}