diff --git a/src/utils/detectFeatures.ts b/src/utils/detectFeatures.ts index 5e59bf1e..082ec07d 100644 --- a/src/utils/detectFeatures.ts +++ b/src/utils/detectFeatures.ts @@ -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"); }