diff --git a/ProjectLighthouse/Controllers/ScoreController.cs b/ProjectLighthouse/Controllers/ScoreController.cs index 1b6314bd..56d360dd 100644 --- a/ProjectLighthouse/Controllers/ScoreController.cs +++ b/ProjectLighthouse/Controllers/ScoreController.cs @@ -68,9 +68,9 @@ namespace LBPUnion.ProjectLighthouse.Controllers } [HttpGet("friendscores/user/{slotId:int}/{type:int}")] - public async Task FriendScores(int slotId, int type) + public IActionResult FriendScores(int slotId, int type) //=> await TopScores(slotId, type); - => this.Ok(""); + => this.Ok(LbpSerializer.BlankElement("scores")); [HttpGet("topscores/user/{slotId:int}/{type:int}")] [SuppressMessage("ReSharper", "PossibleMultipleEnumeration")]