Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/7ba9a24736a98b7b78c5241d03ed331a74517c58 You should set ROOT_URL correctly, otherwise the web may not work correctly.
pull/6600/head
cvium 3 years ago
parent b9d4cbf3e8
commit 7ba9a24736

@ -26,7 +26,7 @@ public class MatroskaKeyframeExtractor : IKeyframeExtractor
/// <inheritdoc />
public bool TryExtractKeyframes(string filePath, [NotNullWhen(true)] out KeyframeData? keyframeData)
{
if (filePath.AsSpan().EndsWith(".mkv", StringComparison.OrdinalIgnoreCase))
if (!filePath.AsSpan().EndsWith(".mkv", StringComparison.OrdinalIgnoreCase))
{
keyframeData = null;
return false;

Loading…
Cancel
Save