We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
metrological-sdk/src/VideoPlayer/index.js
Line 230 in 33ee729
The .then() callback is not set correctly, as-is it executes this.open() immediately instead of only being called when then() is triggered.
.then()
this.open()
then()
The line should be:
this.clear().then(() => this.open(url, config))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
metrological-sdk/src/VideoPlayer/index.js
Line 230 in 33ee729
The
.then()
callback is not set correctly, as-is it executesthis.open()
immediately instead of only being called whenthen()
is triggered.The line should be:
this.clear().then(() => this.open(url, config))
The text was updated successfully, but these errors were encountered: