diff --git a/parsed_torrent.go b/parsed_torrent.go index b487c12..bad5e02 100644 --- a/parsed_torrent.go +++ b/parsed_torrent.go @@ -22,11 +22,12 @@ type ParsedTorrent struct { } func (t ParsedTorrent) String() string { - return fmt.Sprintf("title: %s | episode: %d | resolution: %s | languages: %s | subtitles: %s", + return fmt.Sprintf("title: %s | episode: %d | resolution: %s | languages: %s | subtitles: %s | %s", t.Anime.Title.Native, t.Episode, t.Resolution, strings.Join(t.Languages, ", "), strings.Join(t.Subtitles, ", "), + t.Torrent.StringWithoutTitle(), ) }