Skip to content
Snippets Groups Projects
Commit ff86e467 authored by Mohamed Chibani's avatar Mohamed Chibani
Browse files

multi-stream: fix audio-only reported info

Gitlab: #445

Change-Id: Ib7d8c9070ba17414f8c4b48c3d53f72dd871c428
parent 992345ed
Branches
No related tags found
No related merge requests found
...@@ -387,7 +387,7 @@ Call::getDetails() const ...@@ -387,7 +387,7 @@ Call::getDetails() const
{DRing::Call::Details::ACCOUNTID, getAccountId()}, {DRing::Call::Details::ACCOUNTID, getAccountId()},
{DRing::Call::Details::AUDIO_MUTED, std::string(bool_to_str(isAudioMuted()))}, {DRing::Call::Details::AUDIO_MUTED, std::string(bool_to_str(isAudioMuted()))},
{DRing::Call::Details::VIDEO_MUTED, std::string(bool_to_str(isVideoMuted()))}, {DRing::Call::Details::VIDEO_MUTED, std::string(bool_to_str(isVideoMuted()))},
{DRing::Call::Details::AUDIO_ONLY, std::string(bool_to_str(hasVideo()))}, {DRing::Call::Details::AUDIO_ONLY, std::string(bool_to_str(not hasVideo()))},
}; };
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment