From 7ccc2d7b6140733465fa74c1cdbc80f107a54476 Mon Sep 17 00:00:00 2001 From: jojo aquino Date: Sat, 5 Apr 2025 15:22:48 +0100 Subject: [PATCH] fix missing Participant --- .../EnotaryoPH.Web/Pages/Participant/VideoCall/Room.cshtml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/EnotaryoPH/EnotaryoPH.Web/Pages/Participant/VideoCall/Room.cshtml.cs b/EnotaryoPH/EnotaryoPH.Web/Pages/Participant/VideoCall/Room.cshtml.cs index 8514e3b..85ec2a3 100644 --- a/EnotaryoPH/EnotaryoPH.Web/Pages/Participant/VideoCall/Room.cshtml.cs +++ b/EnotaryoPH/EnotaryoPH.Web/Pages/Participant/VideoCall/Room.cshtml.cs @@ -147,6 +147,7 @@ namespace EnotaryoPH.Web.Pages.Participant.VideoCall .Include(t => t.Principal) .Include(t => t.Schedule) .ThenInclude(sch => sch.LawyerVideoConferenceParticipants) + .ThenInclude(p => p.Participant) .Include(t => t.TransactionDocument) .FirstOrDefault(t => t.Transaction_UID == Transaction_UID);