Skip to content

Commit 012f2d4

Browse files
authored
Update engine.js
Removed https redirection (to work on localhost)
1 parent b2e601a commit 012f2d4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

js/engine.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ function gotoUnloggedPage() {
111111
* Goes to the home page (defined in parameter 'main_url' inside config/config.json)
112112
*/
113113
function gotoHome() {
114-
window.location.href = window.config.main_url.replace('http://', 'https://');
114+
// window.location.href = window.config.main_url.replace('http://', 'https://');
115+
window.location.href = window.config.main_url;
115116
}
116117

117118

0 commit comments

Comments
 (0)