Fixed the View On Emby URL since the Link changed #2368

This commit is contained in:
Jamie Rees 2018-07-03 21:15:23 +01:00
parent f339969258
commit 73d444cde2
3 changed files with 1002 additions and 1 deletions

View file

@ -10,7 +10,7 @@ namespace Ombi.Helpers
public static string GetEmbyMediaUrl(string mediaId)
{
var url =
$"http://app.emby.media/itemdetails.html?id={mediaId}";
$"http://app.emby.media/#!/itemdetails.html?id={mediaId}";
return url;
}
}