Update detectFeatures.ts

This commit is contained in:
Pas 2024-11-09 21:33:41 -07:00 committed by GitHub
parent 86aa7564f0
commit 735c89d3de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -50,7 +50,7 @@ export function canWebkitPictureInPicture(): boolean {
}
export function canPlayHlsNatively(video: HTMLVideoElement): boolean {
if (Hls.isSupported()) return false; // no need to play natively
// if (Hls.isSupported()) return false; // no need to play natively
return !!video.canPlayType("application/vnd.apple.mpegurl");
}