mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge branch 'pr-ab-subscription-form' of github.com:sharelatex/web-sharelatex into pr-ab-subscription-form
This commit is contained in:
commit
92bc411df5
1 changed files with 2 additions and 1 deletions
|
@ -2,6 +2,7 @@ request = require("request")
|
|||
settings = require("settings-sharelatex")
|
||||
_ = require("underscore")
|
||||
logger = require("logger-sharelatex")
|
||||
URL = require("url")
|
||||
|
||||
currencyMappings = {
|
||||
"GB":"GBP"
|
||||
|
@ -31,7 +32,7 @@ module.exports = GeoIpLookup =
|
|||
return callback(e)
|
||||
ip = ip.trim().split(" ")[0]
|
||||
opts =
|
||||
url: "#{settings.apis.geoIpLookup.url}/#{ip}"
|
||||
url: URL.resolve(settings.apis.geoIpLookup.url,ip)
|
||||
timeout: 1000
|
||||
json:true
|
||||
logger.log ip:ip, opts:opts, "getting geo ip details"
|
||||
|
|
Loading…
Reference in a new issue