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

Avoid unnecessary string -> byte[] conversion (Bond-009)

pull/9554/head
Nick 2 years ago
parent f97e844c4f
commit c7feea27fd

@ -61,7 +61,7 @@ public class TrickplayController : BaseJellyfinApiController
return NotFound();
}
return new FileContentResult(Encoding.UTF8.GetBytes(playlist), MimeTypes.GetMimeType("playlist.m3u8"));
return Content(playlist, MimeTypes.GetMimeType("playlist.m3u8"), Encoding.UTF8);
}
/// <summary>

Loading…
Cancel
Save