Fix windows toast notifications opening as http (#4005)

This commit is contained in:
Felanbird
2022-09-23 16:26:23 -04:00
committed by GitHub
parent 28de3e637d
commit 63119661aa
+1 -1
View File
@@ -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;