From 3b0b61fa963a67b1b02b0e036f2f7b22d649eecf Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Tue, 27 Aug 2024 11:29:59 +1000 Subject: [PATCH] Fix webseeds not requesting after priorities are already set https://github.com/anacrolix/torrent/issues/964#issuecomment-2295308596 --- torrent.go | 1 + 1 file changed, 1 insertion(+) diff --git a/torrent.go b/torrent.go index 2742ad6a90..68cfe1f0be 100644 --- a/torrent.go +++ b/torrent.go @@ -2904,6 +2904,7 @@ func (t *Torrent) addWebSeed(url string, opts ...AddWebSeedsOpt) { ws.onGotInfo(t.info) } t.webSeeds[url] = &ws.peer + ws.peer.updateRequests("Torrent.addWebSeed") } func (t *Torrent) peerIsActive(p *Peer) (active bool) {