mirror of
https://github.com/moparisthebest/rcrdit
synced 2024-12-21 23:08:57 -05:00
Add missing null check
This commit is contained in:
parent
fdb2f46fc8
commit
bcbca03ffb
@ -319,7 +319,7 @@ public class RcrdIt extends ResourceConfig implements AutoCloseable {
|
||||
}
|
||||
}
|
||||
|
||||
if(lastStop != null) { // todo: check if lastStop and start are the same, but shouldn't happen?
|
||||
if(lastStop != null && start != null) { // todo: check if lastStop and start are the same, but shouldn't happen?
|
||||
addMeeting(calendar, tz, lastStop, start, program, md, true);
|
||||
}
|
||||
if(start != null && stop != null) {
|
||||
|
Loading…
Reference in New Issue
Block a user