Skip to content

Commit

Permalink
Fix: Network Unreachable Reminder
Browse files Browse the repository at this point in the history
  • Loading branch information
sjlleo committed May 20, 2022
1 parent 474ca96 commit 62f69be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion verify/ipv4.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion verify/ipv6.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 62f69be

Please sign in to comment.