printer/plainprinter.go
changeset 229 d4c099a67c86
parent 228 360929ee6aef
child 234 f5cd55622194
--- a/printer/plainprinter.go	Wed Sep 05 23:22:06 2018 +0200
+++ b/printer/plainprinter.go	Thu Sep 06 00:27:32 2018 +0200
@@ -313,7 +313,8 @@
 	if len(r.Hashtags) > 0 {
 		indentedPrint(w, indent, false, false, "Hashtags", "")
 		for _, tag := range r.Hashtags {
-			indentedPrint(w, indent+p.Indent, true, false, "Tag", "%s", tag)
+			indentedPrint(w, indent+p.Indent, true, false, "Tag", "%s", tag.Name)
+			indentedPrint(w, indent+p.Indent, false, true, "URL", "%s", tag.URL)
 		}
 	}
 	return nil