From 5e58c558ca947754f19239a6cea9e58e77583125 Mon Sep 17 00:00:00 2001 From: Michael Gordeev Date: Wed, 19 Dec 2018 18:16:15 +0000 Subject: [PATCH] Merged PR 19: Revert commit 4fd745c8 Revert commit 4fd745c8 --- FoxTube/Controls/CommentCard.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FoxTube/Controls/CommentCard.xaml.cs b/FoxTube/Controls/CommentCard.xaml.cs index 6516280..067a108 100644 --- a/FoxTube/Controls/CommentCard.xaml.cs +++ b/FoxTube/Controls/CommentCard.xaml.cs @@ -118,7 +118,7 @@ namespace FoxTube.Controls else author.Text = comment.Snippet.AuthorDisplayName; - meta.Text = string.Format("{0} {1}", Methods.GetAgo(comment.Snippet.PublishedAt.Value), comment.Snippet.UpdatedAt.Value != comment.Snippet.PublishedAt.Value ? "(edited)" : ""); + meta.Text = string.Format("{0} {1}", comment.Snippet.AuthorDisplayName, Methods.GetAgo(comment.Snippet.PublishedAt.Value), comment.Snippet.UpdatedAt.Value != comment.Snippet.PublishedAt.Value ? "(edited)" : ""); Methods.FormatText(ref text, comment.Snippet.TextDisplay); try { avatar.ProfilePicture = new BitmapImage(new Uri(comment.Snippet.AuthorProfileImageUrl)); }