diff --git a/akka-bbb-fsesl/src/main/java/org/bigbluebutton/freeswitch/voice/freeswitch/FreeswitchApplication.java b/akka-bbb-fsesl/src/main/java/org/bigbluebutton/freeswitch/voice/freeswitch/FreeswitchApplication.java
index cf2944b48957fb20d069650d360b68a1a4135e9e..c31f6768acce51c4cb15b6469a4e678157b5b6f9 100755
--- a/akka-bbb-fsesl/src/main/java/org/bigbluebutton/freeswitch/voice/freeswitch/FreeswitchApplication.java
+++ b/akka-bbb-fsesl/src/main/java/org/bigbluebutton/freeswitch/voice/freeswitch/FreeswitchApplication.java
@@ -153,6 +153,11 @@ public class FreeswitchApplication {
 						EjectAllUsersCommand cmd = (EjectAllUsersCommand) command;
 						System.out.println("Sending EjectAllUsersCommand for conference = [" + cmd.getRoom() + "]");
 						manager.ejectAll(cmd);
+					} else if (command instanceof TransferUsetToMeetingCommand) {
+						TransferUsetToMeetingCommand cmd = (TransferUsetToMeetingCommand) command;
+						System.out.println("Sending TransferUsetToMeetingCommand for conference = ["
+										+ cmd.getRoom() + "]");
+						manager.tranfer(cmd);
 					} else if (command instanceof RecordConferenceCommand) {
 						manager.record((RecordConferenceCommand) command);
 					} else if (command instanceof DeskShareBroadcastRTMPCommand) {