From 11fe501214a27101a362b85943d6c0daa449e14c Mon Sep 17 00:00:00 2001 From: Maxim Khlobystov <maxim.khlobystov@gmail.com> Date: Mon, 5 Apr 2021 19:41:26 +0000 Subject: [PATCH] Avoid going over the maximum allowed number of poll responses --- bigbluebutton-html5/imports/ui/components/poll/component.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bigbluebutton-html5/imports/ui/components/poll/component.jsx b/bigbluebutton-html5/imports/ui/components/poll/component.jsx index 5d28bcfe5b..84aa685b15 100644 --- a/bigbluebutton-html5/imports/ui/components/poll/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/poll/component.jsx @@ -245,6 +245,8 @@ class Poll extends Component { setOptListLength(len) { const { optList } = this.state; + + len = len > MAX_CUSTOM_FIELDS ? MAX_CUSTOM_FIELDS : len; const diff = len - optList.length; if (diff > 0) { const emptyAddition = Array(diff).fill({ val: '' }); -- GitLab