Skip to content
Snippets Groups Projects
Verified Commit cd289e05 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix macos shadowing

parent 9d8d6b4b
No related branches found
No related tags found
No related merge requests found
Pipeline #3475 failed
...@@ -33,11 +33,11 @@ RoomSummary::RoomSummary(std::string roomIdOrAlias_, ...@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment