this repo has no description

feature: added app.bsky.feed.like to build_aturi

Signed-off-by: Nick Gerakines <12125+ngerakines@users.noreply.github.com>

+15
+15
src/matcher.rs
··· 481 481 rkey.as_str() 482 482 )) 483 483 } 484 + "app.bsky.feed.like" => { 485 + let subject = record 486 + .get("subject") 487 + .ok_or(anyhow!("no subject on event commit record"))? 488 + .as_map_ref() 489 + .map_err(|err| anyhow!(err))?; 490 + let uri = subject 491 + .get("uri") 492 + .ok_or(anyhow!("no uri on event commit record subject"))? 493 + .as_immutable_string_ref() 494 + .map_err(|err| anyhow!(err))?; 495 + 496 + Ok(uri.to_string()) 497 + } 498 + 484 499 _ => Err(anyhow!("no aturi for event")), 485 500 } 486 501 }