Skip to content

Commit

Permalink
Fix not showing post URL when single post was analyzed
Browse files Browse the repository at this point in the history
  • Loading branch information
ktos committed Jan 3, 2020
1 parent 534f6c9 commit bf7b793
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/CoyoteApi/CoyoteHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ public async Task<Post> GetSinglePost(int postId)
text = result.data.text,
topic_id = result.data.topic_id,
user = result.data.user,
user_name = result.data.user_name
user_name = result.data.user_name,
url = result.data.url
};

return post;
Expand Down

0 comments on commit bf7b793

Please sign in to comment.