Skip to content
Snippets Groups Projects
Commit 2b86ad80 authored by Chad Pilkey's avatar Chad Pilkey
Browse files

[AIR] stop the active poll when the result is shown also

parent 7c49c025
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,8 @@ package org.bigbluebutton.air.poll.services {
case "PollStoppedEvtMsg":
handlePollStopped(message);
break;
case "PollShowResultEvtMsg":
handlePollShowResult(message);
default:
break;
}
......@@ -38,5 +40,11 @@ package org.bigbluebutton.air.poll.services {
public function handlePollStopped(msg:Object):void {
meetingData.polls.removeCurrentPoll();
}
public function handlePollShowResult(msg:Object):void {
// This is sent when the presenter publishes the poll result and contains pollId and
// the voting results. For now just remove the active poll
meetingData.polls.removeCurrentPoll();
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment