fix: debug

This commit is contained in:
Sebastian Rindom
2020-09-03 08:44:31 +02:00
parent 95978ecddd
commit f0b61e7654

View File

@@ -11,8 +11,12 @@ export default {
const ip = req.headers["x-forwarded-for"] || req.connection.remoteAddress
console.log(ip)
const { data } = await ipLookupService.lookupIp(ip)
console.log(data)
if (!data.country_code) {
next()
return
@@ -23,6 +27,8 @@ export default {
countries: data.country_code,
})
console.log(regions)
// If this region exists, add it to the body of the cart creation request
if (regions[0]) {
req.body.region_id = regions[0]._id.toString()