tests repair

This commit is contained in:
Filip Izydorczyk 2021-01-18 16:07:48 +01:00
parent b740562e9d
commit 0103a028b4
1 changed files with 2 additions and 1 deletions

View File

@ -88,7 +88,8 @@ public class ExchangeController extends TokenBasedController {
final Assignment assignmentInstance = assignment.get();
final Groups groupInstance = group.get();
if (assignmentInstance.getGroup().getCourseId().getId() != groupInstance.getCourseId().getId()) {
if (assignmentInstance.getGroup().getCourseId() != null
&& assignmentInstance.getGroup().getCourseId().getId() != groupInstance.getCourseId().getId()) {
return new ResponseEntity<>("You can performe exchange only within one course.", HttpStatus.BAD_REQUEST);
}