From bdb8dbbdc4e4251dc19c0348fe925ed1adc20f03 Mon Sep 17 00:00:00 2001 From: Melroy van den Berg Date: Thu, 24 Apr 2025 17:20:43 +0200 Subject: [PATCH] Also add avatar link in summary --- formatter/formatter.go | 1 - 1 file changed, 1 deletion(-) diff --git a/formatter/formatter.go b/formatter/formatter.go index 2d547e5..6447c20 100644 --- a/formatter/formatter.go +++ b/formatter/formatter.go @@ -88,7 +88,6 @@ func formatActor(jsonStr string, parts []string, bold, cyan, green, red, yellow parts = append(parts, fmt.Sprintf("%s: %s", bold("URL"), green(url))) } - // Add avatar (icon) link if present iconUrl := gjson.Get(jsonStr, "icon.url").String() if iconUrl != "" { parts = append(parts, fmt.Sprintf("%s: %s", bold("Avatar"), green(iconUrl)))