Browse Source

Make serv/update use LOCAL_ROOT_URL instead public

The reasoning for that is in the previous commit.
Adam Strzelecki 9 years ago
parent
commit
e4a092fb5a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cmd/serve.go

+ 1 - 1
cmd/serve.go

@@ -109,7 +109,7 @@ func handleUpdateTask(uuid string, user *models.User, username, reponame string,
 	}
 
 	// Ask for running deliver hook and test pull request tasks.
-	reqURL := setting.AppUrl + username + "/" + reponame + "/tasks/trigger?branch=" +
+	reqURL := setting.LocalUrl + username + "/" + reponame + "/tasks/trigger?branch=" +
 		strings.TrimPrefix(task.RefName, "refs/heads/")
 	log.GitLogger.Trace("Trigger task: %s", reqURL)