Fix a few shadowing warnings

fixes #824
This commit is contained in:
Nicolas Werner 2021-12-11 06:19:54 +01:00
parent 75b112f0c8
commit 89e58f78f1
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9
3 changed files with 11 additions and 11 deletions

View file

@ -46,10 +46,10 @@ DeviceVerificationFlow::DeviceVerificationFlow(QObject *,
this->sas = olm::client()->sas_init();
this->isMacVerified = false;
auto user_id = userID.toStdString();
this->toClient = mtx::identifiers::parse<mtx::identifiers::User>(user_id);
auto user_id_ = userID.toStdString();
this->toClient = mtx::identifiers::parse<mtx::identifiers::User>(user_id_);
cache::client()->query_keys(
user_id, [user_id, this](const UserKeyCache &res, mtx::http::RequestErr err) {
user_id_, [user_id_, this](const UserKeyCache &res, mtx::http::RequestErr err) {
if (err) {
nhlog::net()->warn("failed to query device keys: {},{}",
mtx::errors::to_string(err->matrix_error.errcode),
@ -59,7 +59,7 @@ DeviceVerificationFlow::DeviceVerificationFlow(QObject *,
if (!this->deviceId.isEmpty() &&
(res.device_keys.find(deviceId.toStdString()) == res.device_keys.end())) {
nhlog::net()->warn("no devices retrieved {}", user_id);
nhlog::net()->warn("no devices retrieved {}", user_id_);
return;
}