mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
ntp: Fix a bad context usage
This commit is contained in:
parent
4498e57839
commit
fa81eabc29
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ func (s *Service) update() error {
|
|||
if s.timeout > 0 {
|
||||
ctx, cancel = context.WithTimeout(ctx, s.timeout)
|
||||
}
|
||||
response, err := Exchange(s.ctx, s.dialer, s.server)
|
||||
response, err := Exchange(ctx, s.dialer, s.server)
|
||||
if cancel != nil {
|
||||
cancel()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue