Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/03ef9aebfd5b41d444172aab5a21e0d6671c90b1 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from nicknsy/tiles-playlist-fix

Fix tiles playlist not using relative paths
pull/11013/head
Bond-009 1 year ago committed by GitHub
commit 03ef9aebfd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -382,7 +382,7 @@ public class TrickplayManager : ITrickplayManager
if (trickplayInfo.ThumbnailCount > 0)
{
const string urlFormat = "Trickplay/{0}/{1}.jpg?MediaSourceId={2}&api_key={3}";
const string urlFormat = "{0}.jpg?MediaSourceId={1}&api_key={2}";
const string decimalFormat = "{0:0.###}";
var resolution = $"{trickplayInfo.Width}x{trickplayInfo.Height}";
@ -431,7 +431,6 @@ public class TrickplayManager : ITrickplayManager
.AppendFormat(
CultureInfo.InvariantCulture,
urlFormat,
width.ToString(CultureInfo.InvariantCulture),
i.ToString(CultureInfo.InvariantCulture),
itemId.ToString("N"),
apiKey)

Loading…
Cancel
Save