aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/connection.cpp5
-rw-r--r--lib/jobs/basejob.cpp4
-rw-r--r--lib/settings.h2
3 files changed, 5 insertions, 6 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp
index 6cd6ad0b..58d2e01a 100644
--- a/lib/connection.cpp
+++ b/lib/connection.cpp
@@ -95,8 +95,7 @@ public:
DirectChatsMap directChats;
DirectChatUsersMap directChatUsers;
// The below two variables track local changes between sync completions.
- // See also:
- // https://github.com/QMatrixClient/libqmatrixclient/wiki/Handling-direct-chat-events
+ // See https://github.com/quotient-im/libQuotient/wiki/Handling-direct-chat-events
DirectChatsMap dcLocalAdditions;
DirectChatsMap dcLocalRemovals;
std::unordered_map<QString, EventPtr> accountData;
@@ -435,7 +434,7 @@ void Connection::onSyncSuccess(SyncData&& data, bool fromCache)
visit(
*eventPtr,
[this](const DirectChatEvent& dce) {
- // https://github.com/QMatrixClient/libqmatrixclient/wiki/Handling-direct-chat-events
+ // https://github.com/quotient-im/libQuotient/wiki/Handling-direct-chat-events
const auto& usersToDCs = dce.usersToDirectChats();
DirectChatsMap remoteRemovals =
erase_if(d->directChats, [&usersToDCs, this](auto it) {
diff --git a/lib/jobs/basejob.cpp b/lib/jobs/basejob.cpp
index a6471ece..5615736e 100644
--- a/lib/jobs/basejob.cpp
+++ b/lib/jobs/basejob.cpp
@@ -321,7 +321,7 @@ bool checkContentType(const QByteArray& type, const QByteArrayList& patterns)
BaseJob::Status BaseJob::doCheckReply(QNetworkReply* reply) const
{
// QNetworkReply error codes seem to be flawed when it comes to HTTP;
- // see, e.g., https://github.com/QMatrixClient/libqmatrixclient/issues/200
+ // see, e.g., https://github.com/quotient-im/libQuotient/issues/200
// so check genuine HTTP codes. The below processing is based on
// https://en.wikipedia.org/wiki/List_of_HTTP_status_codes
const auto httpCodeHeader =
@@ -576,7 +576,7 @@ QUrl BaseJob::errorUrl() const { return d->errorUrl; }
void BaseJob::setStatus(Status s)
{
// The crash that led to this code has been reported in
- // https://github.com/QMatrixClient/Quaternion/issues/566 - basically,
+ // https://github.com/quotient-im/Quaternion/issues/566 - basically,
// when cleaning up childrent of a deleted Connection, there's a chance
// of pending jobs being abandoned, calling setStatus(Abandoned).
// There's nothing wrong with this; however, the safety check for
diff --git a/lib/settings.h b/lib/settings.h
index 6747631e..427f5494 100644
--- a/lib/settings.h
+++ b/lib/settings.h
@@ -140,7 +140,7 @@ public:
/** \deprecated \sa setToken */
QString accessToken() const;
/** \deprecated Storing accessToken in QSettings is unsafe,
- * see QMatrixClient/Quaternion#181 */
+ * see quotient-im/Quaternion#181 */
void setAccessToken(const QString& accessToken);
Q_INVOKABLE void clearAccessToken();