You've already forked torrent-client
mirror of
https://github.com/veggiedefender/torrent-client.git
synced 2025-11-06 09:29:16 +02:00
Rename toTorrent to toTorrentFile
This commit is contained in:
@@ -72,11 +72,7 @@ func Open(r io.Reader) (*TorrentFile, error) {
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
t, err := bto.toTorrent()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return t, nil
|
||||
return bto.toTorrentFile()
|
||||
}
|
||||
|
||||
func (i *bencodeInfo) hash() ([20]byte, error) {
|
||||
@@ -105,7 +101,7 @@ func (i *bencodeInfo) splitPieceHashes() ([][20]byte, error) {
|
||||
return hashes, nil
|
||||
}
|
||||
|
||||
func (bto *bencodeTorrent) toTorrent() (*TorrentFile, error) {
|
||||
func (bto *bencodeTorrent) toTorrentFile() (*TorrentFile, error) {
|
||||
infoHash, err := bto.Info.hash()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
||||
Reference in New Issue
Block a user