Skip to content
Snippets Groups Projects
Unverified Commit f8b773f9 authored by Chad Pilkey's avatar Chad Pilkey Committed by GitHub
Browse files

Merge pull request #5443 from capilkey/air-fix-poll-publish

[AIR] Stop the active poll when the result is shown
parents 7c49c025 2b86ad80
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