Use HTTPS by default

This commit is contained in:
Chocobo1
2025-05-09 01:20:36 +08:00
parent d56b353c52
commit f9f031cdb4

View File

@@ -333,7 +333,7 @@ void RSSWidget::on_newFeedButton_clicked()
// Ask for feed URL
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;
RSSFeedDialog dialog {this};