You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this line, it makes more sense for it to be fmt.Errorf("Expected infohash to be %x but got %x", infoHash, res.InfoHash), where the expected hash is the original hash as provided by the requesting client.
returnnil, fmt.Errorf("Expected infohash %x but got %x", res.InfoHash, infohash)
The text was updated successfully, but these errors were encountered:
jxofficial
changed the title
Minor issue in the ordering of expected and actual params in error message
Minor issue in the ordering of expected and actual arguments in error message
Sep 21, 2021
In this line, it makes more sense for it to be
fmt.Errorf("Expected infohash to be %x but got %x", infoHash, res.InfoHash)
, where the expected hash is the original hash as provided by the requesting client.torrent-client/client/client.go
Line 42 in 2bde944
The text was updated successfully, but these errors were encountered: