mirror of
https://github.com/mumble-voip/mumble.git
synced 2025-10-26 11:19:16 +00:00
Fix whisper target bitmask
This commit is contained in:
parent
3f420f901e
commit
048ae07360
@ -198,7 +198,7 @@ void ServerHandler::handleVoicePacket(unsigned int msgFlags, PacketDataStream &p
|
||||
pds >> uiSession;
|
||||
ClientUser *p = ClientUser::get(uiSession);
|
||||
AudioOutputPtr ao = g.ao;
|
||||
if (ao && p && ! p->bLocalMute && !(((msgFlags & 0x3f) == 2) && g.s.bWhisperFriends && p->qsFriendName.isEmpty())) {
|
||||
if (ao && p && ! p->bLocalMute && !(((msgFlags & 0x1f) == 2) && g.s.bWhisperFriends && p->qsFriendName.isEmpty())) {
|
||||
unsigned int iSeq;
|
||||
pds >> iSeq;
|
||||
QByteArray qba;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user