Fix #4072 by changing outdated HTTP to HTTPS calls within the codebase (#4073)

This commit is contained in:
Zach H 2020-08-23 17:24:26 -04:00 committed by GitHub
parent b0c7b9078d
commit 3536fa8a75
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 8 deletions

View file

@ -128,7 +128,7 @@ void ChatView::appendCardTag(QTextCursor &cursor, const QString &cardName)
void ChatView::appendUrlTag(QTextCursor &cursor, QString url)
{
if (!url.contains("://"))
url.prepend("http://");
url.prepend("https://");
QTextCharFormat oldFormat = cursor.charFormat();
QTextCharFormat anchorFormat = oldFormat;