Skip to content
Snippets Groups Projects
Commit 4aa64ce1 authored by Richard Alam's avatar Richard Alam
Browse files

- fix NPE problem with scheduling

git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@1513 af16638f-c34d-0410-8cfa-b39d5352b314
parent 98479eea
No related branches found
No related tags found
No related merge requests found
......@@ -103,8 +103,10 @@ class ScheduledSessionController {
def conflict = false
def sched
if (results.size() > 0) {
def sched = results[0]
sched = results[0]
if ((scheduledSessionInstance.startDateTime > sched.startDateTime) && (scheduledSessionInstance.startDateTime < sched.endDateTime)) {
log.debug "Start time is between start and date time of session ${sched.name}"
conflict = true
......
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