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
The spec says:
<li> Run <var>handler</var> with the <var>details</var> parameter set to: {{MediaSessionActionDetails}}. </li>
But the actual dictionary type is never selected. It needs to match the action, and that dictionary should be properly initialized.
The text was updated successfully, but these errors were encountered:
The problem is that it's not wired up correctly.
This:
The MediaSessionActionHandler MUST be run with the details parameter whose dictionary type is:
Should be moved to the where the actual callback handler is called. This should really be a switch statement based on the action type.
Sorry, something went wrong.
Further, for example, MediaSessionSeekToActionDetails:
MediaSessionSeekToActionDetails
dictionary MediaSessionSeekToActionDetails : MediaSessionActionDetails { required double seekTime; boolean fastSeek; };
The spec never says what to set .seekTime to, or what .fastSeek should be set to. It just provides a description.
.seekTime
.fastSeek
No branches or pull requests
The spec says:
But the actual dictionary type is never selected. It needs to match the action, and that dictionary should be properly initialized.
The text was updated successfully, but these errors were encountered: