Merge pull request #2765 from ritzalam/display-welcome-message-on-reconnect

- welcome message isn't being displayed after reconnect.
This commit is contained in:
Richard Alam 2015-09-04 16:54:36 -04:00
commit 2f7e9a3171

View File

@ -70,11 +70,11 @@ package org.bigbluebutton.modules.chat.services
handleChatReceivePublicMessageCommand(chats[i], true); handleChatReceivePublicMessageCommand(chats[i], true);
} }
if (!welcomed) { // if (!welcomed) {
var pcEvent:TranscriptEvent = new TranscriptEvent(TranscriptEvent.TRANSCRIPT_EVENT); var pcEvent:TranscriptEvent = new TranscriptEvent(TranscriptEvent.TRANSCRIPT_EVENT);
dispatcher.dispatchEvent(pcEvent); dispatcher.dispatchEvent(pcEvent);
welcomed = true; // welcomed = true;
} // }
} }
private function handleChatReceivePublicMessageCommand(message:Object, history:Boolean = false):void { private function handleChatReceivePublicMessageCommand(message:Object, history:Boolean = false):void {