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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -129,7 +129,7 @@ public:
case ToastReaction::OpenInBrowser: case ToastReaction::OpenInBrowser:
if (platform_ == Platform::Twitch) if (platform_ == Platform::Twitch)
{ {
link = "http://www.twitch.tv/" + channelName_; link = "https://www.twitch.tv/" + channelName_;
} }
QDesktopServices::openUrl(QUrl(link)); QDesktopServices::openUrl(QUrl(link));
break; break;