diff --git a/src/Ombi.Helpers/EmbyHelper.cs b/src/Ombi.Helpers/EmbyHelper.cs index 61716cd4b..ec23004f7 100644 --- a/src/Ombi.Helpers/EmbyHelper.cs +++ b/src/Ombi.Helpers/EmbyHelper.cs @@ -7,15 +7,21 @@ string path = "item"; if (isJellyfin) { - path = "itemdetails.html"; + path = "details"; } if (customerServerUrl.HasValue()) { - if (!customerServerUrl.EndsWith("/")) + if (isJellyfin) { - return $"{customerServerUrl}/#!/{path}?id={mediaId}"; - } return $"{customerServerUrl}#!/{path}?id={mediaId}"; + } + else { + if (!customerServerUrl.EndsWith("/")) + { + return $"{customerServerUrl}/#!/{path}?id={mediaId}"; + } + return $"{customerServerUrl}#!/{path}?id={mediaId}"; + } } else {