Skip to content

Commit

Permalink
Fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mrlika committed Jan 12, 2024
1 parent b161b01 commit 3a4dab8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 7 additions & 1 deletion demo/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,13 @@ function App() {
/>
</div>
{!!playerType && ["hlsjs", "shaka-player"].includes(playerType) && (
<video ref={videoRef} controls muted style={{ width: 800 }} />
<video
ref={videoRef}
controls
muted
playsInline
style={{ width: 800 }}
/>
)}
</div>
<div style={{ display: "flex" }}>
Expand Down
1 change: 0 additions & 1 deletion packages/p2p-media-loader-core/src/hybrid-loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,5 @@ export class HybridLoader {
this.storageCleanUpIntervalId = undefined;
this.requests.destroy();
this.p2pLoaders.destroy();
this.logger.destroy();
}
}

0 comments on commit 3a4dab8

Please sign in to comment.