From a6b248af02c7057354e9efd63268fe0ae8e9526a Mon Sep 17 00:00:00 2001 From: jvyden Date: Sat, 23 Oct 2021 04:49:39 -0400 Subject: [PATCH] Fix q.Slot.Creator not being included in GetFavouriteSlots --- ProjectLighthouse/Controllers/LevelListController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ProjectLighthouse/Controllers/LevelListController.cs b/ProjectLighthouse/Controllers/LevelListController.cs index 81086377..8d9396d9 100644 --- a/ProjectLighthouse/Controllers/LevelListController.cs +++ b/ProjectLighthouse/Controllers/LevelListController.cs @@ -75,6 +75,7 @@ namespace LBPUnion.ProjectLighthouse.Controllers { .Include(q => q.User) .Include(q => q.Slot) .Include(q => q.Slot.Location) + .Include(q => q.Slot.Creator) .Where(q => q.User.Username == username) .AsEnumerable();