diff options
Diffstat (limited to 'controllers/post.go')
-rw-r--r-- | controllers/post.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/controllers/post.go b/controllers/post.go index d6698e3..ebbefc9 100644 --- a/controllers/post.go +++ b/controllers/post.go @@ -31,7 +31,7 @@ func Publish(c *fiber.Ctx) error { thread.Int32 = int32(parsed) thread.Valid = true } - ip := c.IP()+strings.Join(c.IPs()," ") + ip := c.IP()+" "+strings.Join(c.IPs()," ") fixedPic, err := themagicpipe.DataURLConverter(picture) if err != nil { return c.JSON(fiber.Map{ |