Browse Source

Fix ChatForm::onAvMediaChange not checking callId/friendId

May help with #458
pull/480/head
Tux3 / Mlkj / !Lev.uXFMLA 11 years ago
parent
commit
9ba1d4cf41
No known key found for this signature in database
GPG Key ID: 7E086DD661263264
  1. 3
      src/widget/form/chatform.cpp

3
src/widget/form/chatform.cpp

@ -408,7 +408,8 @@ void ChatForm::onAvPeerTimeout(int FriendId, int) @@ -408,7 +408,8 @@ void ChatForm::onAvPeerTimeout(int FriendId, int)
void ChatForm::onAvMediaChange(int FriendId, int CallId, bool video)
{
Q_UNUSED(FriendId)
if (FriendId != f->friendId || CallId != callId)
return;
if (video)
{

Loading…
Cancel
Save