diff --git a/akka-bbb-fsesl/build.sbt b/akka-bbb-fsesl/build.sbt
index 739e68acf75feea56af3247036f3328f642a3355..ce59af4358980bedd1d3226c8805794369a5d2ed 100755
--- a/akka-bbb-fsesl/build.sbt
+++ b/akka-bbb-fsesl/build.sbt
@@ -53,7 +53,7 @@ libraryDependencies ++= {
 
 libraryDependencies += "org.bigbluebutton" % "bbb-common-message_2.12" % "0.0.19-SNAPSHOT"
 
-libraryDependencies += "org.bigbluebutton"         %  "bbb-fsesl-client"   % "0.0.4"
+libraryDependencies += "org.bigbluebutton"         %  "bbb-fsesl-client"   % "0.0.5"
 
 // https://mvnrepository.com/artifact/org.scala-lang/scala-library
 libraryDependencies += "org.scala-lang" % "scala-library" % "2.12.2"
diff --git a/bbb-fsesl-client/build.sbt b/bbb-fsesl-client/build.sbt
index e96d140fbef29e33110f1a5f94ee8d28dec582eb..8e67c00bd5fce0b0ea76b7e4083d5516c575c3ac 100755
--- a/bbb-fsesl-client/build.sbt
+++ b/bbb-fsesl-client/build.sbt
@@ -6,7 +6,7 @@ description := "BigBlueButton custom FS-ESL client built on top of FS-ESL Java l
 
 organization := "org.bigbluebutton"
 
-version := "0.0.4"
+version := "0.0.5"
 
 // We want to have our jar files in lib_managed dir.
 // This way we'll have the right path when we import
diff --git a/bbb-fsesl-client/src/main/java/org/freeswitch/esl/client/inbound/Client.java b/bbb-fsesl-client/src/main/java/org/freeswitch/esl/client/inbound/Client.java
index 4e17faad7bbd887fc40c5203f5210fdf9462762f..577aa36f64b437281c3d68e3edfd52b46016d2b1 100755
--- a/bbb-fsesl-client/src/main/java/org/freeswitch/esl/client/inbound/Client.java
+++ b/bbb-fsesl-client/src/main/java/org/freeswitch/esl/client/inbound/Client.java
@@ -500,6 +500,9 @@ public class Client
                                     } else if (eventFunc.equals("conference_loop_input")) {
                                         listener.conferenceEventAction(uniqueId, confName, confSize, eventHeaders.get("Action"), event);
                                         return;
+                                    } else if (eventFunc.equals("stop_talking_handler")) {
+                                        listener.conferenceEventAction(uniqueId, confName, confSize, eventHeaders.get("Action"), event);
+                                        return;
                                     } else {
                         /*              StringBuilder sb = new StringBuilder("");
                                         sb.append("\n");
diff --git a/bigbluebutton-client/src/org/bigbluebutton/modules/users/services/MessageReceiver.as b/bigbluebutton-client/src/org/bigbluebutton/modules/users/services/MessageReceiver.as
index a8fb5ff1cdad6546fe5ade323a1cd5383cc436a1..f01da1b5e95dfe9ae9eabcad8b593ea36d5be441 100755
--- a/bigbluebutton-client/src/org/bigbluebutton/modules/users/services/MessageReceiver.as
+++ b/bigbluebutton-client/src/org/bigbluebutton/modules/users/services/MessageReceiver.as
@@ -575,19 +575,7 @@ package org.bigbluebutton.modules.users.services
       
       LiveMeeting.inst().voiceUsers.setListenOnlyForUser(userId, listenOnly);
     }
-    
-    
-    private function userTalk(userId:String, talking:Boolean):void { 
-      LiveMeeting.inst().voiceUsers.setMutedForUser(userId, talking);
-      
-      var event:CoreEvent = new CoreEvent(EventConstants.USER_TALKING);
-      event.message.userID = userId;
-      event.message.talking = talking;
-      globalDispatcher.dispatchEvent(event);  
-      
-    }
-    
-    
+
     /**
      * This meeting is in the process of ending by the server
      */