Add newline before tags title in toot info

This commit is contained in:
Romain de Laage 2021-03-05 10:48:30 +01:00
parent d95b1bbccc
commit 545ebe8321
Signed by: rdelaage
GPG Key ID: 534845FADDF0C329
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ func printToot(conn *tls.Conn, baseURL, tootID string) {
}
}
// print tags
_, err = fmt.Fprintf(conn, "\n# Tags\n")
_, err = fmt.Fprintf(conn, "\n\n# Tags\n")
if err != nil {
log.Println("handleConn: %s", err)
return