unoffical wafrn mirror wafrn.net
atproto social-network activitypub
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

if post is FROM THE FUTURE we say "no youre not"

authored by

Gabriel Amador and committed by jbc.lol 4b9ba6e9 73add250

+6 -1
+6 -1
packages/backend/atproto/utils/getAtProtoThread.ts
··· 466 466 cw = 467 467 "This user has been marked as NSFW and the post has been labeled automatically as NSFW"; 468 468 } 469 + 470 + let createdAt = new Date((postPetitionPds.value as any).createdAt) 471 + if(createdAt.getTime() > new Date().getTime()) { 472 + createdAt = new Date(); 473 + } 469 474 const newData = { 470 475 userId: postCreator.id, 471 476 bskyCid: postPetitionPds.cid, 472 477 bskyUri: postPetitionPds.uri, 473 478 content: postText, 474 - createdAt: new Date((postPetitionPds.value as any).createdAt), 479 + createdAt: createdAt, 475 480 privacy: Privacy.Public, 476 481 parentId: parentId, 477 482 content_warning: cw,