Skip to content

Commit

Permalink
Remove extraneous info on getRecord (bluesky-social#835)
Browse files Browse the repository at this point in the history
* remove extraneous info on getRecord

* fix test-env
  • Loading branch information
dholms authored Apr 18, 2023
1 parent a687aca commit 6e2a3d3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/pds/src/api/com/atproto/repo/getRecord.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ export default function (server: Server, ctx: AppContext) {
}
return {
encoding: 'application/json',
body: record,
body: {
uri: record.uri,
cid: record.cid,
value: record.value,
},
}
})
}

0 comments on commit 6e2a3d3

Please sign in to comment.