Browse Source

pub/actor.go: don't leave empty space if actor is missing bio

Benton Edmondson 1 year ago
parent
commit
ff17520207
1 changed files with 6 additions and 2 deletions
  1. 6 2
      pub/actor.go

+ 6 - 2
pub/actor.go

@@ -166,12 +166,16 @@ func (a *Actor) footer(width int) (string, bool) {
 func (a *Actor) String(width int) string {
 	output := a.header(width)
 
-	if body, present := a.center(width - 4); present {
+	body, bodyPresent := a.center(width - 4)
+	if bodyPresent {
 		output += "\n\n" + ansi.Indent(body, "  ", true)
 	}
 
 	if footer, present := a.footer(width); present {
-		output += "\n\n" + footer
+		if bodyPresent {
+			output += "\n"
+		}
+		output += "\n" + footer
 	}
 
 	return output