diff --git a/src/client/object/other/video-player.ts b/src/client/object/other/video-player.ts index ccd58d7..e069329 100644 --- a/src/client/object/other/video-player.ts +++ b/src/client/object/other/video-player.ts @@ -46,9 +46,7 @@ export class VideoPlayer { } if (source.endsWith('m3u8')) { - if (this.video.canPlayType('application/vnd.apple.mpegurl')) { - // Continue - } else if (Hls.isSupported()) { + if (Hls.isSupported()) { this.hls = new Hls(); this.hls.loadSource(source); this.hls.attachMedia(this.video);