mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Fix macos shadowing
This commit is contained in:
parent
9d8d6b4bca
commit
cd289e0587
1 changed files with 2 additions and 2 deletions
|
@ -33,11 +33,11 @@ RoomSummary::RoomSummary(std::string roomIdOrAlias_,
|
||||||
|
|
||||||
http::client()->get_summary(
|
http::client()->get_summary(
|
||||||
roomIdOrAlias,
|
roomIdOrAlias,
|
||||||
[proxy = std::move(ctx)](const mtx::responses::PublicRoom &room, mtx::http::RequestErr e) {
|
[proxy = std::move(ctx)](const mtx::responses::PublicRoom &room_, mtx::http::RequestErr e) {
|
||||||
if (e) {
|
if (e) {
|
||||||
emit proxy->failed();
|
emit proxy->failed();
|
||||||
} else {
|
} else {
|
||||||
emit proxy->loaded(room);
|
emit proxy->loaded(room_);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
vias);
|
vias);
|
||||||
|
|
Loading…
Reference in a new issue