summaryrefslogtreecommitdiff
path: root/http.go
diff options
context:
space:
mode:
Diffstat (limited to 'http.go')
-rw-r--r--http.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/http.go b/http.go
index 9d5fff0..f983220 100644
--- a/http.go
+++ b/http.go
@@ -21,7 +21,7 @@ func (f *Forge) HttpPost(url string, data []byte) ([]byte, error) {
usr, _ := user.Current()
req.Header.Set("author", usr.Username)
- req.Header.Set("hostname", "fixme:hostname")
+ req.Header.Set("hostname", f.hostname)
client := &http.Client{}
resp, err := client.Do(req)