diff options
author | Tobias Fella <fella@posteo.de> | 2021-11-15 23:03:09 +0100 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2021-11-15 23:03:09 +0100 |
commit | d8c9f0d5802f8b1c3ef362964dac5c8d60a61871 (patch) | |
tree | d083e1b087caff950a5246d36b6b2261154d905a | |
parent | fb30d455e2dbeed8c242cfbeb153f834b0358f11 (diff) | |
download | libquotient-d8c9f0d5802f8b1c3ef362964dac5c8d60a61871.tar.gz libquotient-d8c9f0d5802f8b1c3ef362964dac5c8d60a61871.zip |
Port away from deprecated upfront percent encoding
-rw-r--r-- | lib/room.cpp | 3 | ||||
-rw-r--r-- | lib/user.cpp | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/lib/room.cpp b/lib/room.cpp index c11f7990..c2c4ba78 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -750,8 +750,7 @@ Room::Changes Room::Private::markMessagesAsRead(rev_iter_t upToMarker) if ((*upToMarker)->senderId() != q->localUser()->id()) { connection->callApi<PostReceiptJob>(BackgroundRequest, id, QStringLiteral("m.read"), - QUrl::toPercentEncoding( - (*upToMarker)->id())); + (*upToMarker)->id()); break; } } diff --git a/lib/user.cpp b/lib/user.cpp index 88549e5d..7da71dba 100644 --- a/lib/user.cpp +++ b/lib/user.cpp @@ -66,7 +66,7 @@ User::~User() = default; void User::load() { auto* profileJob = - connection()->callApi<GetUserProfileJob>(QUrl::toPercentEncoding(id())); + connection()->callApi<GetUserProfileJob>(id()); connect(profileJob, &BaseJob::result, this, [this, profileJob] { d->defaultName = profileJob->displayname(); d->defaultAvatar = Avatar(QUrl(profileJob->avatarUrl())); |