refactor: use structuredClone for deep clone
This commit is contained in:
parent
70958a9f77
commit
84b183a9f6
3 changed files with 8 additions and 8 deletions
|
@ -88,7 +88,7 @@ export async function deliverToRelays(user: { id: User['id']; host: null; }, act
|
|||
}));
|
||||
if (relays.length === 0) return;
|
||||
|
||||
const copy = JSON.parse(JSON.stringify(activity));
|
||||
const copy = structuredClone(activity);
|
||||
if (!copy.to) copy.to = ['https://www.w3.org/ns/activitystreams#Public'];
|
||||
|
||||
const signed = await attachLdSignature(copy, user);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue