Skip to content

Commit

Permalink
Update engine.js
Browse files Browse the repository at this point in the history
Removed https redirection (to work on localhost)
  • Loading branch information
juanatsap authored Jan 10, 2021
1 parent b2e601a commit 012f2d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ function gotoUnloggedPage() {
* Goes to the home page (defined in parameter 'main_url' inside config/config.json)
*/
function gotoHome() {
window.location.href = window.config.main_url.replace('http://', 'https://');
// window.location.href = window.config.main_url.replace('http://', 'https://');
window.location.href = window.config.main_url;
}


Expand Down

0 comments on commit 012f2d4

Please sign in to comment.