Skip to content

Commit

Permalink
manually use resolve in one place
Browse files Browse the repository at this point in the history
  • Loading branch information
Simn committed Jun 6, 2018
1 parent 99d0822 commit ff81568
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/haxelib/client/Main.hx
Expand Up @@ -253,7 +253,7 @@ class Main {
function initSite() {
siteUrl = "http://" + SERVER.host + ":" + SERVER.port + "/" + SERVER.dir;
var remotingUrl = siteUrl + "api/" + SERVER.apiVersion + "/" + SERVER.url;
site = new SiteProxy(haxe.remoting.HttpConnection.urlConnect(remotingUrl).api);
site = new SiteProxy(haxe.remoting.HttpConnection.urlConnect(remotingUrl).resolve("api"));
}

function param( name, ?passwd ) {
Expand Down

0 comments on commit ff81568

Please sign in to comment.