From 5729a7ae3f917bd1dc8c5adf17da7ee7e900ffd7 Mon Sep 17 00:00:00 2001 From: Sioro Date: Thu, 19 May 2016 13:24:30 +0200 Subject: [PATCH] Modify separating line to be the length of the torrent title --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index 4d95ebe..041da1e 100644 --- a/client.go +++ b/client.go @@ -208,7 +208,7 @@ func (c *Client) Render() { print(clearScreen) fmt.Println(t.Info().Name) - fmt.Println("=============================================================") + fmt.Println(strings.Repeat("=", len(t.Info().Name))) if c.ReadyForPlayback() { fmt.Printf("Stream: \thttp://localhost:%d\n", c.Port) }