[pim/pimcommon] src/pimcommon/shareserviceurl: Use https here
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit ee88948a78325b1d8dc35da1b3b171185a4582e7 by Laurent Montel.
Committed on 14/08/2026 at 21:34.
Pushed by mlaurent into branch 'master'.
Use https here
M +2 -2 src/pimcommon/shareserviceurl/shareserviceurlmanager.cpp
https://invent.kde.org/pim/pimcommon/-/commit/ee88948a78325b1d8dc35da1b3b171185a4582e7
diff --git a/src/pimcommon/shareserviceurl/shareserviceurlmanager.cpp b/src/pimcommon/shareserviceurl/shareserviceurlmanager.cpp
index e6958514..bc819373 100644
--- a/src/pimcommon/shareserviceurl/shareserviceurlmanager.cpp
+++ b/src/pimcommon/shareserviceurl/shareserviceurlmanager.cpp
@@ -160,7 +160,7 @@ QUrl ShareServiceUrlManager::generateServiceUrl(const QString &link, const QStri
break;
}
case LinkedIn: {
- url.setUrl(QStringLiteral("http://www.linkedin.com/shareArticle"));
+ url.setUrl(QStringLiteral("https://www.linkedin.com/shareArticle"));
QUrlQuery urlQuery;
urlQuery.addQueryItem(QStringLiteral("mini"), QStringLiteral("true"));
urlQuery.addQueryItem(QStringLiteral("url"), link);
@@ -177,7 +177,7 @@ QUrl ShareServiceUrlManager::generateServiceUrl(const QString &link, const QStri
break;
}
case LiveJournal: {
- url.setUrl(QStringLiteral("http://www.livejournal.com/update.bml"));
+ url.setUrl(QStringLiteral("https://www.livejournal.com/update.bml"));
QUrlQuery urlQuery;
urlQuery.addQueryItem(QStringLiteral("event"), link);
urlQuery.addQueryItem(QStringLiteral("subject"), title);