Merge pull request #4826 from capilkey/2.1-fix-client-mate-errors

Fix exceptions on reconnect
This commit is contained in:
Fred Dixon 2017-12-15 12:39:59 -05:00 committed by GitHub
commit 8687f9d572
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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);
}
}

View File

@ -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);
}