Merge pull request #4826 from capilkey/2.1-fix-client-mate-errors
Fix exceptions on reconnect
This commit is contained in:
commit
8687f9d572
@ -27,9 +27,9 @@ package org.bigbluebutton.modules.chat.events
|
||||
|
||||
public var chatId:String;
|
||||
|
||||
public function ChatHistoryEvent(type:String)
|
||||
public function ChatHistoryEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false)
|
||||
{
|
||||
super(type, true, false);
|
||||
super(type, bubbles, cancelable);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -113,7 +113,7 @@ package org.bigbluebutton.modules.present.business
|
||||
dispatcher.dispatchEvent(new GetListOfPresentationsReply(idAndName));
|
||||
}
|
||||
|
||||
private function handleRequestPresentationInfoPodEvent(e: RequestPresentationInfoPodEvent): void {
|
||||
public function handleRequestPresentationInfoPodEvent(e: RequestPresentationInfoPodEvent): void {
|
||||
sender.getPresentationInfo(e.podId);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user