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

OO-4663: don't retrieve recordings of meeting if null

parent 4b18143e
No related branches found
No related tags found
No related merge requests found
......@@ -813,7 +813,7 @@ public class BigBlueButtonManagerImpl implements BigBlueButtonManager,
@Override
public List<BigBlueButtonRecording> getRecordings(BigBlueButtonMeeting meeting, BigBlueButtonErrors errors) {
if(meeting.getServer() == null || !meeting.getServer().isEnabled()) {
if(meeting == null || meeting.getServer() == null || !meeting.getServer().isEnabled()) {
return new ArrayList<>();
}
......
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