From 4f9f10e130555d39c5521de4530f4217c592c16e Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Fri, 18 Sep 2015 13:40:22 -0700 Subject: [PATCH] timezone detection is based on browser location/ip and not cloudron region intentionally --- src/cloudron.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cloudron.js b/src/cloudron.js index 0f7712870..e52bb3ede 100644 --- a/src/cloudron.js +++ b/src/cloudron.js @@ -158,7 +158,7 @@ function activate(username, password, email, name, ip, callback) { debug('activating user:%s email:%s', username, email); - setTimeZone(ip, function () { }); // TODO: get this from user + setTimeZone(ip, function () { }); // TODO: get this from user. note that timezone is detected based on the browser location and not the cloudron region if (!name) name = settings.getDefaultSync(settings.CLOUDRON_NAME_KEY);