···466466 cw =
467467 "This user has been marked as NSFW and the post has been labeled automatically as NSFW";
468468 }
469469+470470+ let createdAt = new Date((postPetitionPds.value as any).createdAt)
471471+ if(createdAt.getTime() > new Date().getTime()) {
472472+ createdAt = new Date();
473473+ }
469474 const newData = {
470475 userId: postCreator.id,
471476 bskyCid: postPetitionPds.cid,
472477 bskyUri: postPetitionPds.uri,
473478 content: postText,
474474- createdAt: new Date((postPetitionPds.value as any).createdAt),
479479+ createdAt: createdAt,
475480 privacy: Privacy.Public,
476481 parentId: parentId,
477482 content_warning: cw,