Skip to content
Snippets Groups Projects
Commit c9862792 authored by srosse's avatar srosse
Browse files

OO-5166: permanent meeting doesn't have a start date

parent 9d6443e4
No related branches found
No related tags found
No related merge requests found
...@@ -435,7 +435,7 @@ public class BigBlueButtonManagerImpl implements BigBlueButtonManager, ...@@ -435,7 +435,7 @@ public class BigBlueButtonManagerImpl implements BigBlueButtonManager,
Date now = new Date(); Date now = new Date();
Date start = meeting.getStartDate(); Date start = meeting.getStartDate();
Date startWithLeadingTime = meeting.getStartWithLeadTime(); Date startWithLeadingTime = meeting.getStartWithLeadTime();
if(startWithLeadingTime.compareTo(now) <= 0 && start.compareTo(now) >= 0) { if(startWithLeadingTime != null && startWithLeadingTime.compareTo(now) <= 0 && start.compareTo(now) >= 0) {
List<VFSLeaf> slides = getSlides(meeting); List<VFSLeaf> slides = getSlides(meeting);
if(!slides.isEmpty()) { if(!slides.isEmpty()) {
BigBlueButtonErrors errors = new BigBlueButtonErrors(); BigBlueButtonErrors errors = new BigBlueButtonErrors();
......
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