Skip to content

Commit

Permalink
fix: just return de string
Browse files Browse the repository at this point in the history
Co-authored-by: Nulo <[email protected]>
  • Loading branch information
fauno and catdevnull authored Jul 5, 2024
1 parent 82dd18f commit 1f912f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/apsystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export default class ActivityPubSystem {
const { url, method, headers } = request

if (headers.signature === undefined) {
return new Promise((resolve, reject) => resolve(""))
return ""
}

const signature = signatureParser.parse({ url, method, headers })
Expand Down

0 comments on commit 1f912f9

Please sign in to comment.