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

This commit is contained in:
Richard Alam 2012-07-30 18:57:02 +00:00
parent 35bc56625b
commit 87e989f34a

View File

@ -120,7 +120,7 @@ package org.bigbluebutton.modules.whiteboard.services
tempAnnotations.push(annotation);
}
if (tempAnnotations.length > 1) {
if (tempAnnotations.length > 0) {
whiteboardModel.addAnnotationFromHistory(tempAnnotations);
}
}