mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +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(
|
||||
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) {
|
||||
emit proxy->failed();
|
||||
} else {
|
||||
emit proxy->loaded(room);
|
||||
emit proxy->loaded(room_);
|
||||
}
|
||||
},
|
||||
vias);
|
||||
|
|
Loading…
Reference in a new issue