Skip to content
Snippets Groups Projects
Commit 186a4afb authored by gnaegi's avatar gnaegi
Browse files

OO-4599 fix lower boundary check for room size, participants and

duration
parent 225aadf9
No related branches found
No related tags found
No related merge requests found
......@@ -327,7 +327,7 @@ public class EditBigBlueButtonTemplateController extends FormBasicController {
allOk &= false;
} else if(StringHelper.containsNonWhitespace(el.getValue())
&& (!StringHelper.isLong(el.getValue())
|| Long.parseLong(el.getValue()) <= 1)) {
|| Long.parseLong(el.getValue()) < 1)) {
el.setErrorKey("form.error.nointeger", null);
allOk &= false;
}
......
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