fix: persist note_extensions on AP Update activity
on_update was discarding custom fields (posterUrl, movieTitle, etc), so remote notes from movies-diary lost posters after Update delivery.
This commit is contained in:
@@ -66,7 +66,7 @@ impl ActivityPubRepository for NoOpApRepo {
|
||||
) -> Result<ThoughtId, DomainError> {
|
||||
Ok(ThoughtId::from_uuid(uuid::Uuid::new_v4()))
|
||||
}
|
||||
async fn apply_note_update(&self, _: &str, _: &str) -> Result<(), DomainError> {
|
||||
async fn apply_note_update(&self, _: &str, _: &str, _: Option<serde_json::Value>) -> Result<(), DomainError> {
|
||||
Ok(())
|
||||
}
|
||||
async fn retract_note(&self, _: &str) -> Result<(), DomainError> {
|
||||
|
||||
Reference in New Issue
Block a user