diff --git a/DagoniteEmpire/Service/CharacterPostsController.cs b/DagoniteEmpire/Service/CharacterPostsController.cs index af3d59f..cf8fe2d 100644 --- a/DagoniteEmpire/Service/CharacterPostsController.cs +++ b/DagoniteEmpire/Service/CharacterPostsController.cs @@ -69,10 +69,10 @@ public async Task Get(int id) } postCount = await _postRepository.GetCharacterPostCount(id,from,to); - return postCount; + return ""; }catch(Exception ex) { - return 0; + return ex.Message; } } }