diff --git a/EventPlatform.Infrastructure/Services/Event/RegistrationService.cs b/EventPlatform.Infrastructure/Services/Event/RegistrationService.cs index a3465a6..a3e350a 100644 --- a/EventPlatform.Infrastructure/Services/Event/RegistrationService.cs +++ b/EventPlatform.Infrastructure/Services/Event/RegistrationService.cs @@ -212,6 +212,7 @@ public async Task GetJoinMeetingInfoAsync(Guid registrationI var registration = await _context.Registrations .Include(r => r.TicketType) .ThenInclude(tt => tt.Event) + .Include(u=> u.User) .FirstOrDefaultAsync(r => r.RegistrationId == registrationId && r.UserId == currentUserId.Value); if (registration == null)