From 7ca6c0eeb7e165792febb82b771f853a95829b63 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Fri, 22 Mar 2024 19:19:48 -0400 Subject: [PATCH] Bypass the annoying FFXIV website browser check This pops up because the built-in Qt web engine is considered "unsupported" despite the FFXIV websites working fine. Even worse, when continuing through this check it sends you back to the homepage. Now a cookie is set so the pop-up doesn't come up at all. (cherry picked from commit f97204a422fc36f2153c9fa026cc19c20b9b7fc1) --- launcher/ui/Pages/BrowserPage.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/launcher/ui/Pages/BrowserPage.qml b/launcher/ui/Pages/BrowserPage.qml index 80d58ed..711b2aa 100644 --- a/launcher/ui/Pages/BrowserPage.qml +++ b/launcher/ui/Pages/BrowserPage.qml @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: 2023 Joshua Goins // SPDX-License-Identifier: GPL-3.0-or-later +import QtQuick import QtWebView import org.kde.kirigami as Kirigami @@ -18,5 +19,7 @@ Kirigami.Page { anchors.fill: parent url: page.url + + Component.onCompleted: setCookie("finalfantasyxiv.com", "ldst_bypass_browser", "1") } } \ No newline at end of file