TVMLKit JS Player is not firing 'playbackError' event in tvOS14

I have observed that the 'playbackError' event is not getting fired while a video playback error occurs. This is happening only in tvOS14 where in tvOS13, it's firing as expected.

Did Apple change anything related to this event? I am not able to see any changes related to this in apple documentation(https://developer.apple.com/documentation/tvmljs/player/1682115-playbackerror).

Added the event listener for this event as follows:

jsplayer.addEventListener('playbackError', (error) => { console.log("Playback Error Occurred", error) });
TVMLKit JS Player is not firing 'playbackError' event in tvOS14
 
 
Q