We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a35a5fe commit bed1919Copy full SHA for bed1919
core/internal/downloads/service.go
@@ -82,7 +82,7 @@ func (d *Service) TestAndUpdateClient() error {
82
func (d *Service) TestClient(client *sc.TorrentClient) (dc.DownloadClient, error) {
83
newClient, err := dc.TestTorrentClient(client)
84
if err != nil {
85
- return nil, fmt.Errorf("unable to connect torrent torrentClient: %v", err)
+ return nil, fmt.Errorf("unable to connect torrent client: %w", err)
86
}
87
return newClient, nil
88
0 commit comments