diff --git a/DysonNetwork.Sphere/Poll/PollController.cs b/DysonNetwork.Sphere/Poll/PollController.cs index 1ef9af3..3a5a697 100644 --- a/DysonNetwork.Sphere/Poll/PollController.cs +++ b/DysonNetwork.Sphere/Poll/PollController.cs @@ -94,6 +94,7 @@ public class PollController(AppDatabase db, PollService polls, PublisherService var polls = await query .Skip(offset) .Take(take) + .Include(p => p.Questions) .ToListAsync(); return Ok(polls); }