Skip to content

Commit

Permalink
chore(release): v1.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mihar-22 committed Nov 14, 2023
1 parent b7164cc commit f300235
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vidstack-workspace",
"version": "1.5.5",
"version": "1.5.6",
"private": true,
"type": "module",
"workspaces": [
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vidstack/react",
"version": "1.5.5",
"version": "1.5.6",
"description": "UI component library for building high-quality, accessible video and audio experiences on the web.",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/vidstack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vidstack",
"version": "1.5.5",
"version": "1.5.6",
"description": "UI component library for building high-quality, accessible video and audio experiences on the web.",
"license": "MIT",
"type": "module",
Expand Down
3 changes: 2 additions & 1 deletion packages/vidstack/src/providers/html/html–media-events.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { effect, onDispose } from 'maverick.js';
import { effect, onDispose, peek } from 'maverick.js';
import { DOMEvent, isNil, listenEvent, useDisposalBin } from 'maverick.js/std';

import type { MediaCanPlayDetail } from '../../core/api/media-events';
Expand Down Expand Up @@ -186,6 +186,7 @@ export class HTMLMediaEvents {

private _getCanPlayDetail(): MediaCanPlayDetail {
return {
provider: peek(this._ctx.$provider)!,
duration: this._media.duration,
buffered: this._media.buffered,
seekable: this._media.seekable,
Expand Down

0 comments on commit f300235

Please sign in to comment.