リレーのHTTP-Signatureは投稿者の鍵でするように (#6357)

This commit is contained in:
MeiMei 2020-05-15 20:50:04 +09:00 committed by GitHub
parent 61582a0a33
commit 2170c27b62
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -83,14 +83,12 @@ export async function deliverToRelays(user: ILocalUser, activity: any) {
});
if (relays.length === 0) return;
const relayActor = await getRelayActor();
const copy = JSON.parse(JSON.stringify(activity));
if (!copy.to) copy.to = ['https://www.w3.org/ns/activitystreams#Public'];
const signed = await attachLdSignature(copy, user);
for (const relay of relays) {
deliver(relayActor, signed, relay.inbox);
deliver(user, signed, relay.inbox);
}
}