We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent beead81 commit d38cbf4Copy full SHA for d38cbf4
ipgeolocation.js
@@ -13,8 +13,10 @@ var _ipgeolocation = function() {
13
if (useSessionStorage) {
14
if (subUrl == "ipgeo" && sessionStorage.getItem("_ipGeolocation") && callback) {
15
callback(JSON.parse(sessionStorage.getItem("_ipGeolocation")));
16
+ return;
17
} else if (subUrl == "timezone" && sessionStorage.getItem("_ipTimeZone") && callback) {
18
callback(JSON.parse(sessionStorage.getItem("_ipTimeZone")));
19
20
}
21
22
0 commit comments