We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb37976 commit b9c0d2aCopy full SHA for b9c0d2a
1 file changed
client_Transmission.go
@@ -218,7 +218,7 @@ func Tr_FetchTorrents() *Tr_TorrentsStruct {
218
func Tr_SubmitBlockPeer(blockPeerMap map[string]BlockPeerInfoStruct) bool {
219
ipfilterList := []string{}
220
for peerIP := range blockPeerMap {
221
- ipfilterList = append(ipfilterList, peerIP)
+ ipfilterList = append(ipfilterList, ":" + peerIP + "-" + peerIP)
222
}
223
224
Tr_ipfilterStr = strings.Join(ipfilterList, "\n")
0 commit comments