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

Merge pull request from dmitrylyzo/clear-transcodinginfo

Clear TranscodingInfo if play method changed
pull/7792/head
Cody Robibero 3 years ago committed by GitHub
commit c9491cf317
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -770,6 +770,11 @@ namespace Emby.Server.Implementations.Session
await UpdateNowPlayingItem(session, info, libraryItem, !isAutomated).ConfigureAwait(false);
if (!string.IsNullOrEmpty(session.DeviceId) && info.PlayMethod != PlayMethod.Transcode)
{
ClearTranscodingInfo(session.DeviceId);
}
var users = GetUsers(session);
// only update saved user data on actual check-ins, not automated ones

Loading…
Cancel
Save