Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
feat(groups): show who is in a group call before joining
Browse files Browse the repository at this point in the history
Fix #5507
  • Loading branch information
anthonybilinski committed Jan 27, 2019
1 parent 5289c99 commit ec07fd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/coreav.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,8 @@ void CoreAV::groupCallCallback(void* tox, uint32_t group, uint32_t peer, const i
return;
}

emit c->groupPeerAudioPlaying(group, peer);

CoreAV* cav = c->getAv();

auto it = cav->groupCalls.find(group);
Expand All @@ -494,8 +496,6 @@ void CoreAV::groupCallCallback(void* tox, uint32_t group, uint32_t peer, const i

ToxGroupCall& call = it->second;

emit c->groupPeerAudioPlaying(group, peer);

if (call.getMuteVol() || !call.isActive()) {
return;
}
Expand Down

0 comments on commit ec07fd7

Please sign in to comment.