1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/UserProfile.cpp b/src/ui/UserProfile.cpp
index 715c1c42..274ed927 100644
--- a/src/ui/UserProfile.cpp
+++ b/src/ui/UserProfile.cpp
@@ -244,7 +244,7 @@ UserProfile::changeUsername(QString username)
if (isGlobalUserProfile()) {
// change global
http::client()->set_displayname(
- username.toStdString(), [this](mtx::http::RequestErr err) {
+ username.toStdString(), [](mtx::http::RequestErr err) {
if (err) {
nhlog::net()->warn("could not change username");
return;
@@ -408,4 +408,4 @@ UserProfile::getGlobalProfileData()
globalAvatarUrl = QString::fromStdString(res.avatar_url);
emit avatarUrlChanged();
});
-}
\ No newline at end of file
+}
|