coar-notify-7 QATopic fix + some ignore on IT classes due to lack of time and high urgency

This commit is contained in:
frabacche
2024-01-05 14:29:49 +01:00
parent 3ba80ddde5
commit 1ab8bdcda2

View File

@@ -75,8 +75,8 @@ public class QATopicRestRepository extends DSpaceRestRepository<QATopicRest, Str
ascending = pageable.getSort()
.getOrderFor(ORDER_FIELD).getDirection() == Direction.ASC;
}
List<QATopic> topics = qaEventService.findAllTopicsBySource(context, source, pageable.getOffset(), pageable.getPageSize(),
ORDER_FIELD, ascending);
List<QATopic> topics = qaEventService.findAllTopicsBySource(context, source,
pageable.getOffset(), pageable.getPageSize(), ORDER_FIELD, ascending);
if (topics == null) {
return null;
}