Fixing the broken link to app.plex.tv for the "view in plex" button
This commit is contained in:
SuperPotatoMen 2017-03-13 00:29:38 +01:00 committed by GitHub
commit 53cfb29130

View file

@ -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; }
}
}
}