Fixup back url in commit status

This commit is contained in:
Vsevolod Strukchinsky 2014-02-13 13:15:46 +06:00
parent bb90a492cf
commit 79ccd56960

View file

@ -225,7 +225,11 @@ func updateGitHubStatus(repo *Repo, commit *Commit) error {
}
client := github.New(user.GithubToken)
return client.Repos.CreateStatus(repo.Owner, repo.Name, status, settings.URL().String(), message, commit.Hash)
var url string
url = settings.URL().String() + "/" + repo.Slug + "/commit/" + commit.Hash
return client.Repos.CreateStatus(repo.Owner, repo.Name, status, url, message, commit.Hash)
}
type bufferWrapper struct {