fix: 🐛 Small change to the URL we generate for the Play on Plex link

This commit is contained in:
tidusjar 2021-09-07 08:19:37 +01:00
commit e8810e82b1
2 changed files with 10 additions and 10 deletions

View file

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