diff --git a/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php b/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php
index 42fe89fb5f..6237a36080 100644
--- a/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php
+++ b/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php
@@ -33,10 +33,9 @@ class TwentyNineteen_Walker_Comment extends Walker_Comment {
 				<footer class="comment-meta">
 					<div class="comment-author vcard">
 						<?php
-						$comment_author_link = get_comment_author_link( $comment );
-						$comment_author_url  = get_comment_author_url( $comment );
-						$comment_author      = get_comment_author( $comment );
-						$avatar              = get_avatar( $comment, $args['avatar_size'] );
+						$comment_author_url = get_comment_author_url( $comment );
+						$comment_author     = get_comment_author( $comment );
+						$avatar             = get_avatar( $comment, $args['avatar_size'] );
 						if ( 0 != $args['avatar_size'] ) {
 							if ( empty( $comment_author_url ) ) {
 								echo $avatar;
@@ -71,7 +70,7 @@ class TwentyNineteen_Walker_Comment extends Walker_Comment {
 									),
 								)
 							),
-							'<b class="fn">' . get_comment_author_link( $comment ) . '</b>'
+							'<b class="fn">' . $comment_author . '</b>'
 						);
 
 						if ( ! empty( $comment_author_url ) ) {
