Use job wrapper for INFO call

This commit is contained in:
Harrison Cramer
2023-08-06 14:56:00 -04:00
parent 4f0d4b49ef
commit 68f27e5dc1
4 changed files with 15 additions and 31 deletions

View File

@@ -104,6 +104,7 @@ func (c *Client) handleError(w http.ResponseWriter, err error, message string, s
response := ErrorResponse{
Message: message,
Details: err.Error(),
Status: status,
}
json.NewEncoder(w).Encode(response)
}

View File

@@ -54,7 +54,7 @@ func InfoHandler(w http.ResponseWriter, r *http.Request) {
msg, err := c.Info()
if err != nil {
c.handleError(w, err, "Could not get info", http.StatusBadRequest)
c.handleError(w, err, "Could not get project info and initialize gitlab.nvim plugin", http.StatusBadRequest)
return
}