From d11868b7a607bed0b0c04d2a7abf91145abba6a9 Mon Sep 17 00:00:00 2001 From: Timon Ringwald Date: Sun, 21 Aug 2022 14:40:21 +0200 Subject: [PATCH] String() improved --- parsed_torrent.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsed_torrent.go b/parsed_torrent.go index 973c471..bad5e02 100644 --- a/parsed_torrent.go +++ b/parsed_torrent.go @@ -28,6 +28,6 @@ func (t ParsedTorrent) String() string { t.Resolution, strings.Join(t.Languages, ", "), strings.Join(t.Subtitles, ", "), - t.Torrent, + t.Torrent.StringWithoutTitle(), ) }