Skip to content
Snippets Groups Projects
Commit 3b7ecd22 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

call: fix warning

Change-Id: I0af605825cd6cc80bf6bb5cbc05fdb8e81185a39
parent 42fe874c
No related branches found
No related tags found
No related merge requests found
......@@ -439,7 +439,7 @@ Call::addSubCall(Call& subcall)
for (const auto& msg : pendingOutMessages_)
subcall.sendTextMessage(msg.first, msg.second);
subcall.addStateListener(
subcall.addStateListener(
[sub = subcall.weak(), parent = weak()](Call::CallState new_state, Call::ConnectionState new_cstate, int code) {
runOnMainThread([sub, parent, new_state, new_cstate, code]() {
if (auto p = parent.lock()) {
......
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