JDBurnZ/pyminfraud

URL contains a double slash

Opened this issue · 0 comments

request_uri = '/app/ccv2r'

Due to software changes on the Maxmind API, it is rejecting URLs contain a double slash.

Invalid URL: https://minfraud.maxmind.com//app/ccv2r
Valid URL: https://minfraud.maxmind.com/app/ccv2r

my suggestion is:

    request_uri = 'app/ccv2r'