Skip to content
Snippets Groups Projects
Commit 92ab8951 authored by Aline Gondim Santos's avatar Aline Gondim Santos
Browse files

call: fix recording state

Change-Id: I3fcb60aed90e3a7cf7edee7f8ac28c204dbb8952
parent c7c8e2e8
No related branches found
No related tags found
No related merge requests found
......@@ -141,6 +141,14 @@ CurrentCall::updateCallInfo()
set_isCapturing(isCapturing);
set_isHandRaised(callModel->isHandRaised(id_));
set_isModerator(callModel->isModerator(id_));
QStringList recorders {};
if (callModel->hasCall(id_)) {
auto callInfo = callModel->getCall(id_);
recorders = callInfo.recordingPeers;
}
updateRecordingState(callModel->isRecording(id_));
updateRemoteRecorders(recorders);
}
void
......
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