Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/9523a1682b2d9b2b2e30833f85777c7e96ca76a3?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Apply suggestions from code review

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
pull/7712/head
Nyanmisaka 3 years ago committed by GitHub
parent 5386f06095
commit 9523a1682b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -776,7 +776,7 @@ namespace MediaBrowser.Model.Dlna
if (directVideoCodec != null)
{
// merge directVideoCodec to videoCodecs
Array.Resize(ref videoCodecs, (videoCodecs?.Length ?? 0) + 1);
Array.Resize(ref videoCodecs, videoCodecs.Length + 1);
videoCodecs[^1] = directVideoCodec;
}

Loading…
Cancel
Save