diff options
author | Trial97 <alexandru.tripon97@gmail.com> | 2023-07-10 16:25:15 +0300 |
---|---|---|
committer | Trial97 <alexandru.tripon97@gmail.com> | 2023-07-10 16:25:15 +0300 |
commit | 35ccfdb7996ba727039ad2c0ab2974a49eecb6cc (patch) | |
tree | 2ef737788a9a0d5c6e810373371c2497f6e1c59c /launcher/Application.cpp | |
parent | 6d758795af8a414d13db4951e3e9ed60af7091fd (diff) | |
parent | 91c9082d19b957c3295e7a0b5bc6add71e6459b8 (diff) | |
download | PrismLauncher-35ccfdb7996ba727039ad2c0ab2974a49eecb6cc.tar.gz PrismLauncher-35ccfdb7996ba727039ad2c0ab2974a49eecb6cc.tar.bz2 PrismLauncher-35ccfdb7996ba727039ad2c0ab2974a49eecb6cc.zip |
Merge branch 'develop' of https://github.com/PrismLauncher/PrismLauncher into catpacks
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
Diffstat (limited to 'launcher/Application.cpp')
-rw-r--r-- | launcher/Application.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/launcher/Application.cpp b/launcher/Application.cpp index c687f91a..a80af39e 100644 --- a/launcher/Application.cpp +++ b/launcher/Application.cpp @@ -687,8 +687,16 @@ Application::Application(int &argc, char **argv) : QApplication(argc, argv) m_settings->reset("PastebinCustomAPIBase"); } } - // meta URL - m_settings->registerSetting("MetaURLOverride", ""); + { + // Meta URL + m_settings->registerSetting("MetaURLOverride", ""); + + QUrl metaUrl(m_settings->get("MetaURLOverride").toString()); + + // get rid of invalid meta urls + if (!metaUrl.isValid() || metaUrl.scheme() != "http" || metaUrl.scheme() != "https") + m_settings->reset("MetaURLOverride"); + } m_settings->registerSetting("CloseAfterLaunch", false); m_settings->registerSetting("QuitAfterGameStop", false); |