mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-13 13:37:31 -07:00
AP Signatureヘッダの特殊処理を削除 (#5628)
This commit is contained in:
parent
181e4e5198
commit
dc5b2bf02c
2 changed files with 0 additions and 7 deletions
|
@ -60,11 +60,6 @@ export default async (user: ILocalUser, url: string, object: any) => {
|
|||
headers: ['date', 'host', 'digest']
|
||||
});
|
||||
|
||||
// Signature: Signature ... => Signature: ...
|
||||
let sig = req.getHeader('Signature')!.toString();
|
||||
sig = sig.replace(/^Signature /, '');
|
||||
req.setHeader('Signature', sig);
|
||||
|
||||
req.on('timeout', () => req.abort());
|
||||
|
||||
req.on('error', e => {
|
||||
|
|
|
@ -26,8 +26,6 @@ const router = new Router();
|
|||
function inbox(ctx: Router.RouterContext) {
|
||||
let signature;
|
||||
|
||||
ctx.req.headers.authorization = `Signature ${ctx.req.headers.signature}`;
|
||||
|
||||
try {
|
||||
signature = httpSignature.parseRequest(ctx.req, { 'headers': [] });
|
||||
} catch (e) {
|
||||
|
|
Loading…
Reference in a new issue