Jump to content

The theme video transcoding temp files will not be deleted due to the playback stop status not being reported


Go to solution Solved by Luke,

Recommended Posts

Posted

fix this issue on playbackmanager.js:

function reportPlayback(
    playbackManagerInstance,
    state,
    player,
    reportPlaylist,
    serverId,
    method,
    progressEventName,
    additionalData,
    isAutomated
){
	...
	// if (state.IsBackgroundPlayback) return Promise.resolve();	This will cause reporting of the Theme Video stopped status to be skipped.
	if (state.IsBackgroundPlayback && method !== "reportPlaybackStopped") return Promise.resolve();
	...
}

 

  • Solution
Posted

Hi, yes that's a good point. I suppose this will have to be changed. Thanks.

  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...