fix: store in_reply_to on remote notes + use full handle in federation component links/actions

This commit is contained in:
2026-05-15 05:09:44 +02:00
parent e04b08c202
commit 09bebf7dc9
8 changed files with 28 additions and 8 deletions

View File

@@ -391,6 +391,7 @@ pub trait ActivityPubRepository: Send + Sync {
sensitive: bool,
content_warning: Option<String>,
visibility: &str,
in_reply_to: Option<&url::Url>,
) -> Result<(), DomainError>;
/// Apply an Update to a previously accepted remote Note.

View File

@@ -847,6 +847,7 @@ impl ActivityPubRepository for TestStore {
_sensitive: bool,
_content_warning: Option<String>,
_visibility: &str,
_in_reply_to: Option<&url::Url>,
) -> Result<(), DomainError> {
Ok(())
}