Torrent.String: Quote raw names

This commit is contained in:
Matt Joiner 2019-02-16 18:33:14 +11:00
parent b102ce901a
commit 9ea65d672f
1 changed files with 4 additions and 2 deletions

6
t.go
View File

@ -1,6 +1,7 @@
package torrent
import (
"strconv"
"strings"
"github.com/anacrolix/missinggo/pubsub"
@ -221,9 +222,10 @@ func (t *Torrent) DownloadAll() {
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) {