Use HTTPS by default

This commit is contained in:
Chocobo1 2025-05-09 01:20:36 +08:00
commit f9f031cdb4
No known key found for this signature in database
GPG key ID: 210D9C873253A68C

View file

@ -333,7 +333,7 @@ void RSSWidget::on_newFeedButton_clicked()
// Ask for feed URL // Ask for feed URL
const QString clipText = qApp->clipboard()->text(); const QString clipText = qApp->clipboard()->text();
const QString defaultURL = Net::DownloadManager::hasSupportedScheme(clipText) ? clipText : u"http://"_s; const QString defaultURL = Net::DownloadManager::hasSupportedScheme(clipText) ? clipText : u"https://"_s;
RSS::Feed *newFeed = nullptr; RSS::Feed *newFeed = nullptr;
RSSFeedDialog dialog {this}; RSSFeedDialog dialog {this};