修复语音group_id问题

This commit is contained in:
aozhiwei 2019-08-14 16:13:30 +08:00
parent 5f7cfad2f6
commit 484774bbce

View File

@ -1825,7 +1825,7 @@ void Human::SendWxVoip()
{ {
cs::SMWxVoip notifymsg; cs::SMWxVoip notifymsg;
if (!team_uuid.empty()) { if (!team_uuid.empty()) {
notifymsg.set_group_id(a8::XValue(room->room_uuid).GetString() + team_uuid); notifymsg.set_group_id(a8::XValue(room->room_uuid).GetString() + "_" + a8::XValue(team_id).GetString());
} }
SendNotifyMsg(notifymsg); SendNotifyMsg(notifymsg);
} }