this repo has no description
1let rtype = event?.commit?.record["$type"];
2
3if rtype != "app.bsky.feed.post" {
4 return false;
5}
6
7let root_uri = event?.commit?.record?.reply?.root?.uri;
8
9if `${root_uri}`.starts_with("at://did:plc:cbkjy5n7bk3ax2wplmtjofq2/app.bsky.feed.post/") {
10 return build_aturi(event);
11}
12
13false