Skip to content

Commit

Permalink
Merge pull request bluesky-social#465 from bluesky-social/plc-bugfix-…
Browse files Browse the repository at this point in the history
…varname

Fix a small bug in PLC referencing a value that doesn't exist
  • Loading branch information
dholms authored Jan 6, 2023
2 parents 1007fab + eb15655 commit edf2bb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/plc/src/lib/document.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export const assureValidCreationOp = async (did: string, op: t.CreateOp) => {
if (!expectedDid.startsWith(did)) {
throw new ServerError(
400,
`Hash of genesis operation does not match DID identifier: ${expect}`,
`Hash of genesis operation does not match DID identifier: ${expectedDid}`,
)
}
}
Expand Down

0 comments on commit edf2bb1

Please sign in to comment.