t.go | 6 ++++-- diff --git a/t.go b/t.go index 8af13dc2a16b5773782946635ecb7c473b4a2a82..452a717a5c4ce78d8d97dcb754dbd6aed383fc20 100644 --- a/t.go +++ b/t.go @@ -1,6 +1,7 @@ package torrent import ( + "strconv" "strings" "github.com/anacrolix/missinggo/pubsub" @@ -221,9 +222,10 @@ func (t *Torrent) String() string { s := t.name() if s == "" { - s = t.infoHash.HexString() + return t.infoHash.HexString() + } else { + return strconv.Quote(s) } - return s } func (t *Torrent) AddTrackers(announceList [][]string) {