Fixed the issue where the Plex Server URL was no longer formatted correctly.

This commit is contained in:
tidusjar 2021-06-12 19:20:35 +01:00
commit 0793050913
2 changed files with 2 additions and 2 deletions

View file

@ -107,7 +107,7 @@ namespace Ombi.Helpers
public static string GetPlexMediaUrl(string machineId, int mediaId)
{
var url =
$"https://app.plex.tv/web/app#!/server/{machineId}/details?key=library%2Fmetadata%2F{mediaId}";
$"https://app.plex.tv/web/app#!/server/{machineId}/details?key=%2flibrary%2Fmetadata%2F{mediaId}";
return url;
}