Skip to content

Commit

Permalink
xmlcomms.js: actually honour the edit_server_host setting
Browse files Browse the repository at this point in the history
  • Loading branch information
stsquad committed Mar 16, 2019
1 parent bb9ec37 commit af46de4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/xmlcomms.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ console.log = function() {
// Get the base URL from which we make all requests to the server..
function getEditUrl()
{
return "http://127.0.0.1:" + settings.get("edit_server_port") + "/";
return "http://" + settings.get("edit_server_host") + ":" + settings.get("edit_server_port") + "/";
}

/*
Expand Down

0 comments on commit af46de4

Please sign in to comment.