Browse Source

Fixed possible `nil` pointer dereference

Signed-off-by: Alexandr Hacicheant <[email protected]>
Alexandr Hacicheant 1 year ago
parent
commit
16652ed26a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      internal/desktop/client.go

+ 1 - 1
internal/desktop/client.go

@@ -166,10 +166,10 @@ type CreateFileShareResponse struct {
 func (c *Client) CreateFileShare(ctx context.Context, r CreateFileShareRequest) (*CreateFileShareResponse, error) {
 	rawBody, _ := json.Marshal(r)
 	req, err := http.NewRequestWithContext(ctx, http.MethodPost, backendURL("/mutagen/file-shares"), bytes.NewReader(rawBody))
-	req.Header.Set("Content-Type", "application/json")
 	if err != nil {
 		return nil, err
 	}
+	req.Header.Set("Content-Type", "application/json")
 	resp, err := c.client.Do(req)
 	if err != nil {
 		return nil, err