Skip to content

Commit

Permalink
Fix response
Browse files Browse the repository at this point in the history
  • Loading branch information
Kai Hendry committed Jun 11, 2018
1 parent 8f9edb0 commit 5fc0ba8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ func (h handler) handlePull(w http.ResponseWriter, r *http.Request) {
return
}

response.OK(w, "Pulled %d", len(invites))
response.OK(w, fmt.Sprintf("Pulled %d", len(invites)))

}

Expand Down Expand Up @@ -350,7 +350,7 @@ func (h handler) handlePush(w http.ResponseWriter, r *http.Request) {
return
}

response.OK(w, "Pushed %d", len(invites))
response.OK(w, fmt.Sprintf("Pushed %d", len(invites)))

}

Expand Down

0 comments on commit 5fc0ba8

Please sign in to comment.