From 6875f28c363ef5b062b050c3ab872fcae0680aa8 Mon Sep 17 00:00:00 2001 From: nyanmisaka Date: Tue, 19 Mar 2024 17:40:13 +0800 Subject: [PATCH] Increase the minimum version of Tizen that supports native fMP4 to 5 Signed-off-by: nyanmisaka --- src/scripts/browserDeviceProfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/browserDeviceProfile.js b/src/scripts/browserDeviceProfile.js index fb42980fa7..5fb650886a 100644 --- a/src/scripts/browserDeviceProfile.js +++ b/src/scripts/browserDeviceProfile.js @@ -68,7 +68,7 @@ function canPlayNativeHls() { } function canPlayNativeHlsInFmp4() { - if (browser.tizenVersion >= 3 || browser.web0sVersion >= 3.5) { + if (browser.tizenVersion >= 5 || browser.web0sVersion >= 3.5) { return true; }