Skip to content

Commit

Permalink
code style
Browse files Browse the repository at this point in the history
  • Loading branch information
mei23 committed Nov 27, 2023
1 parent f7c82eb commit 68a6238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/activitypub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ async function inbox(ctx: Router.RouterContext) {
return;
}

const digestActual = crypto.createHash('sha256').update(raw).digest('base64')
const digestActual = crypto.createHash('sha256').update(raw).digest('base64');

if (digestExpected !== digestActual) {
logger.warn(`inbox: digest missmatch`);
Expand Down

0 comments on commit 68a6238

Please sign in to comment.