Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nheko Reborn
nheko
Compare Revisions
9d8d6b4bcaec0994776bf91a556a7e27cb862c30...cd289e0587de9d43d26e0410b1707530a946525a
Commits (1)
Fix macos shadowing
· cd289e05
Nicolas Werner
authored
Aug 05, 2022
cd289e05
Hide whitespace changes
Inline
Side-by-side
src/ui/RoomSummary.cpp
View file @
cd289e05
...
...
@@ -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
);
...
...