-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Console error due to reading field from null
#3787
Comments
@lamflam Thanks for pointing this out. I am curious how you were able to to trigger this error. Are you playing in low latency mode? Can you share the structure of your MPD, for instance is there a |
Issue is addressed in #3789 |
Awesome, thanks @dsilhavy! Yes I am using low latency mode, here are my settings:
It actually only seemed to happen when I switch from the one stream to another, never on the first attempt to play a stream. When switching streams, I call Thanks again for the quick fix! |
Also, should I close this or do you generally keep it open until it makes it into a public release? |
@lamflam Thanks for the feedback, probably the function is called while the switch to the next stream is performed. Please close this issue then, the fix will be part of the next release 4.1.1 |
Environment
Steps to reproduce
Observed behavior
The player works, but seeing errors in the console.
Console output
Expected behavior
This shouldn't error.
On this line,
DVRWindow.end
is used but two lines above it can explicitly be set tonull
. I'm not sure what the expected behavior here is exactly (whether or notnull
is truly valid) but if so the seek should probably be made conditional onDVRWindow
having a value.dash.js/src/streaming/controllers/PlaybackController.js
Lines 182 to 184 in ef00170
The text was updated successfully, but these errors were encountered: