From fbaed0310ae2b193b6462c2bcff322732510ac9b Mon Sep 17 00:00:00 2001 From: Vasily Date: Mon, 27 Apr 2020 18:41:11 +0300 Subject: [PATCH] Fix webos detection --- src/scripts/browser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/browser.js b/src/scripts/browser.js index 8b21c85469..840ef6ac23 100644 --- a/src/scripts/browser.js +++ b/src/scripts/browser.js @@ -22,7 +22,7 @@ define([], function () { return true; } - if (userAgent.indexOf('webos') !== -1) { + if (userAgent.indexOf('web0s') !== -1) { return true; }