From d4ae4bef5bc1267656062a1c1d2c2ef7b94572f9 Mon Sep 17 00:00:00 2001
From: uhensler <urs.hensler@frentix.com>
Date: Fri, 26 Jun 2020 14:34:15 +0200
Subject: [PATCH] OO-4630: RS if user selects an appointment

---
 .../appointments/ui/AppointmentListSelectionController.java      | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/java/org/olat/course/nodes/appointments/ui/AppointmentListSelectionController.java b/src/main/java/org/olat/course/nodes/appointments/ui/AppointmentListSelectionController.java
index 386d7c1267d..cf43d17e101 100644
--- a/src/main/java/org/olat/course/nodes/appointments/ui/AppointmentListSelectionController.java
+++ b/src/main/java/org/olat/course/nodes/appointments/ui/AppointmentListSelectionController.java
@@ -95,6 +95,7 @@ public class AppointmentListSelectionController extends AppointmentListControlle
 	protected List<AppointmentRow> loadModel() {
 		AppointmentSearchParams aParams = new AppointmentSearchParams();
 		aParams.setTopic(topic);
+		aParams.setFetchTopic(true);
 		List<Appointment> appointments = appointmentsService.getAppointments(aParams);
 		
 		ParticipationSearchParams pParams = new ParticipationSearchParams();
-- 
GitLab