diff options
Diffstat (limited to 'verify/ipv6.go')
-rw-r--r-- | verify/ipv6.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/verify/ipv6.go b/verify/ipv6.go index 2da879d..e39455b 100644 --- a/verify/ipv6.go +++ b/verify/ipv6.go @@ -78,7 +78,7 @@ func (v *IPv6Verifier) upgradeStatus(status int) { func (v *IPv6Verifier) UnblockTest(MoiveID int) { testURL := NetflixURL_PREFIX + strconv.Itoa(MoiveID) - if reCode, err := util.RequestIP(testURL, v.IP, v.LocalAddr); err != nil { + if reCode, err := util.RequestIP(testURL, v.IP, v.LocalAddr, v.Proxy); err != nil { if err.Error() == "Banned" { v.unblockTestChan <- UnblockTestResult{MoiveID, "", nil} } else { |