diff --git a/ProjectLighthouse/Controllers/ListController.cs b/ProjectLighthouse/Controllers/ListController.cs index 765582a5..ef12d2b1 100644 --- a/ProjectLighthouse/Controllers/ListController.cs +++ b/ProjectLighthouse/Controllers/ListController.cs @@ -43,7 +43,7 @@ namespace LBPUnion.ProjectLighthouse.Controllers string response = queuedLevels.Aggregate(string.Empty, (current, q) => current + q.Slot.Serialize()); - return this.Ok(LbpSerializer.TaggedStringElement("slots", response, "total", 1)); + return this.Ok(LbpSerializer.TaggedStringElement("slots", response, "total", queuedLevels.Count())); } [HttpPost("lolcatftw/add/user/{id:int}")] @@ -217,4 +217,4 @@ namespace LBPUnion.ProjectLighthouse.Controllers #endregion } -} \ No newline at end of file +}