From 735c89d3dee282d70928f2dd2e6447fca19d7249 Mon Sep 17 00:00:00 2001 From: Pas <74743263+Pasithea0@users.noreply.github.com> Date: Sat, 9 Nov 2024 21:33:41 -0700 Subject: [PATCH] Update detectFeatures.ts --- src/utils/detectFeatures.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); }