summary refs log tree commit diff stats
path: root/post.go
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2019-05-22 15:02:12 -0400
committerBen Morrison <ben@gbmor.dev>2019-05-22 15:02:12 -0400
commitbce52652ceb54b325ac72cc9a173655ec0a80756 (patch)
tree3d4f44c1dd41d0f7301e9ec1e9ef510ef7b14ab5 /post.go
parent8e3bef29c6127b9ff33bb8d6f0481780f8a3568f (diff)
downloadgetwtxt-bce52652ceb54b325ac72cc9a173655ec0a80756.tar.gz
tweaked error handling
Diffstat (limited to 'post.go')
-rw-r--r--post.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/post.go b/post.go
index 4078cf6..103c254 100644
--- a/post.go
+++ b/post.go
@@ -2,6 +2,7 @@ package main
 
 import (
 	"fmt"
+	"log"
 	"net/http"
 
 	"github.com/getwtxt/registry"
@@ -58,5 +59,8 @@ func apiPostUser(w http.ResponseWriter, r *http.Request) {
 	}
 
 	log200(r)
-	_, _ = w.Write([]byte(fmt.Sprintf("200 OK\n")))
+	_, err = w.Write([]byte(fmt.Sprintf("200 OK\n")))
+	if err != nil {
+		log.Printf("%v\n", err)
+	}
 }