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

- fix compile problem

parent 12921b1e
No related branches found
No related tags found
No related merge requests found
package org.bigbluebutton.conference.service.chat;
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.lang.StringEscapeUtils;
import org.bigbluebutton.conference.service.messaging.MessagingConstants;
import org.bigbluebutton.conference.service.messaging.redis.MessageHandler;
import org.bigbluebutton.conference.service.presentation.ConversionUpdatesProcessor;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import com.google.gson.JsonParser;
import com.google.gson.JsonObject;
......
package org.bigbluebutton.conference.service.participants;
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.lang.StringEscapeUtils;
import org.bigbluebutton.conference.service.messaging.MessagingConstants;
import org.bigbluebutton.conference.service.messaging.redis.MessageHandler;
//import org.bigbluebutton.conference.service.participants.participantsApplication;
import org.bigbluebutton.core.api.IBigBlueButtonInGW;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import com.google.gson.JsonParser;
import com.google.gson.JsonObject;
......
......@@ -131,10 +131,10 @@ class UsersEventRedisPublisher(service: MessageSender) extends OutMessageListene
println("UserJoinedEvent**NEW - " + gson.toJson(usrJoinedEvent) + "\n")
//Should we keep sending the message to both channels?! //TODO
service.send(MessagingConstants.PARTICIPANTS_CHANNEL, gson.toJson(usrJoinedEvent));
// service.send(MessagingConstants.PARTICIPANTS_CHANNEL, gson.toJson(usrJoinedEvent));
println("UsersEventRedisPublisher: end handleUserJoined ***Anton")
service.send(MessagingConstants.BIGBLUEBUTTON_WEBHOOK_EVENTS, gson.toJson(usrJoinedEvent));
// service.send(MessagingConstants.BIGBLUEBUTTON_WEBHOOK_EVENTS, gson.toJson(usrJoinedEvent));
//Anton: for user_joined_event ---end------------
}
......
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