diff options
author | sjlleo <[email protected]> | 2022-05-20 18:06:29 +0800 |
---|---|---|
committer | sjlleo <[email protected]> | 2022-05-20 18:06:29 +0800 |
commit | 62f69bea5098e4e39f34023d0bbacaf975ed5f0e (patch) | |
tree | de3867026d3613a6b6981a2d34e87cde25195536 | |
parent | 474ca966f5310052d5581672595432fdf01107b5 (diff) |
Fix: Network Unreachable Reminderv3.0-Alpha.3
-rw-r--r-- | verify/ipv4.go | 2 | ||||
-rw-r--r-- | verify/ipv6.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/verify/ipv4.go b/verify/ipv4.go index 6e086c9..d014fc0 100644 --- a/verify/ipv4.go +++ b/verify/ipv4.go @@ -35,7 +35,7 @@ func (v *IPv4Verifier) Execute() *VerifyResponse { switch res := <-v.unblockTestChan; { case res.err != nil: - response.StatusCode = NetworkUnrachable + v.unblockStatus = NetworkUnrachable case res.CountryCode != "": switch res.movieID { diff --git a/verify/ipv6.go b/verify/ipv6.go index f6471b2..05083c7 100644 --- a/verify/ipv6.go +++ b/verify/ipv6.go @@ -35,7 +35,7 @@ func (v *IPv6Verifier) Execute() *VerifyResponse { switch res := <-v.unblockTestChan; { case res.err != nil: - response.StatusCode = NetworkUnrachable + v.unblockStatus = NetworkUnrachable case res.CountryCode != "": switch res.movieID { |