Browse Source

Pass along edit token on post update

Fixes bug introduced when we moved `Token` into the func's parameters,
out of PostParams.
pull/9/head
Matt Baer 5 years ago
parent
commit
cbbd4ec209
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      post.go

+ 3
- 0
post.go View File

@@ -145,8 +145,11 @@ func (c *Client) updatePost(collection, identifier, token string, sp *PostParams
/* /*
if collection != "" { if collection != "" {
endpoint = "/collections/" + collection + endpoint endpoint = "/collections/" + collection + endpoint
} else {
sp.Token = token
} }
*/ */
sp.Token = token
env, err := c.put(endpoint, sp, p) env, err := c.put(endpoint, sp, p)
if err != nil { if err != nil {
return nil, err return nil, err


Loading…
Cancel
Save