this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix decode invocation

+1 -1
+1 -1
atproto/pdsclient/pdsclient.go
··· 82 82 } 83 83 84 84 var out uploadBlobResp 85 - if err := json.NewDecoder(resp.Body).Decode(out); err != nil { 85 + if err := json.NewDecoder(resp.Body).Decode(&out); err != nil { 86 86 return nil, fmt.Errorf("failed decoding JSON response body: %w", err) 87 87 } 88 88 return &out.Blob, nil