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

- fix problem where we don't handle properly if there is only 1 annotation

parent 35bc5662
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,7 @@ package org.bigbluebutton.modules.whiteboard.services
tempAnnotations.push(annotation);
}
if (tempAnnotations.length > 1) {
if (tempAnnotations.length > 0) {
whiteboardModel.addAnnotationFromHistory(tempAnnotations);
}
}
......
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