diff options
Diffstat (limited to 'verify/ipv4.go')
-rw-r--r-- | verify/ipv4.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/verify/ipv4.go b/verify/ipv4.go index 89a0763..b7275b3 100644 --- a/verify/ipv4.go +++ b/verify/ipv4.go @@ -78,7 +78,7 @@ func (v *IPv4Verifier) upgradeStatus(status int) { func (v *IPv4Verifier) 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 { |