From 63119661aaaff3d56d1b433c7b26b7bf0681cdb5 Mon Sep 17 00:00:00 2001 From: Felanbird <41973452+Felanbird@users.noreply.github.com> Date: Fri, 23 Sep 2022 16:26:23 -0400 Subject: [PATCH] Fix windows toast notifications opening as http (#4005) --- src/singletons/Toasts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/singletons/Toasts.cpp b/src/singletons/Toasts.cpp index 1cf99bea..c06df70a 100644 --- a/src/singletons/Toasts.cpp +++ b/src/singletons/Toasts.cpp @@ -129,7 +129,7 @@ public: case ToastReaction::OpenInBrowser: if (platform_ == Platform::Twitch) { - link = "http://www.twitch.tv/" + channelName_; + link = "https://www.twitch.tv/" + channelName_; } QDesktopServices::openUrl(QUrl(link)); break;