aboutsummaryrefslogtreecommitdiff
path: root/lib/connection.cpp
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-07-07 18:16:30 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-08-09 10:18:34 +0900
commit7a5b359b8823646ce97cbaf05c251cb04c291466 (patch)
tree293ac4a2bc3942352e0d34b0e437015db4eb0740 /lib/connection.cpp
parentb0f259c3aa4ca619a6998184d16f9ab2daf5b5f4 (diff)
downloadlibquotient-7a5b359b8823646ce97cbaf05c251cb04c291466.tar.gz
libquotient-7a5b359b8823646ce97cbaf05c251cb04c291466.zip
Rename zero-impact strings
Diffstat (limited to 'lib/connection.cpp')
-rw-r--r--lib/connection.cpp5
1 files changed, 2 insertions, 3 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) {