Skip to content
Snippets Groups Projects
Commit 75fc1e12 authored by Richard Alam's avatar Richard Alam
Browse files

- fix issue where akka-apps cannot deserialize the message bcause of the null field.

parent e80f9b6b
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,7 @@ public class GetAllUsersCommand extends FreeswitchCommand {
}
pj = new VoiceUserJoinedEvent(voiceUserId, member.getId().toString(), confXML.getConferenceRoom(),
callerId, callerIdName, member.getMuted(), member.getSpeaking(), null);
callerId, callerIdName, member.getMuted(), member.getSpeaking(), "none");
eventListener.handleConferenceEvent(pj);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment