Fix unused capture warning

This commit is contained in:
Nicolas Werner 2021-02-02 12:57:21 -05:00
parent 2a858d84e2
commit 935abee62e
1 changed files with 2 additions and 2 deletions

View File

@ -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;
@ -293,4 +293,4 @@ UserProfile::setGlobalUsername(const QString &globalUser)
{
globalUsername = globalUser;
emit displayNameChanged();
}
}