Fix q.Slot.Creator not being included in GetFavouriteSlots

This commit is contained in:
jvyden 2021-10-23 04:49:39 -04:00
commit a6b248af02
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

@ -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();