mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 09:45:31 +00:00
aquatic_http: don't use bindings_after_at - it causes CI error
This commit is contained in:
parent
5d782999d3
commit
e6d7f78a7a
1 changed files with 4 additions and 1 deletions
|
|
@ -346,8 +346,11 @@ impl Connection {
|
|||
let peer_addr = self.get_peer_addr()?;
|
||||
|
||||
match request {
|
||||
Request::Announce(request @ AnnounceRequest { info_hash, .. }) => {
|
||||
Request::Announce(request) => {
|
||||
let info_hash = request.info_hash;
|
||||
|
||||
if self.access_list.borrow().allows(self.config.access_list.mode, &info_hash.0) {
|
||||
|
||||
let request = ChannelRequest::Announce {
|
||||
request,
|
||||
connection_id: self.connection_id,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue