fix: broadcast AP Update after poster sync to fix missing posters on remote instances
Some checks failed
CI / Check / Test (push) Has been cancelled

New movies had no poster at AP broadcast time (race between poster sync
and ReviewLogged handler). PosterSynced event now fires after sync
completes, triggering Update notes so remote apps get the poster URL.
This commit is contained in:
2026-06-04 23:12:27 +02:00
parent 6a10ba15c1
commit 886f26c7dc
9 changed files with 124 additions and 2 deletions

View File

@@ -62,6 +62,7 @@ impl EventHandler for RecordingHandler {
DomainEvent::WrapUpRequested { .. } => "wrapup_requested",
DomainEvent::WrapUpCompleted { .. } => "wrapup_completed",
DomainEvent::SearchReindexRequested => "search_reindex",
DomainEvent::PosterSynced { .. } => "poster_synced",
};
self.calls.lock().unwrap().push(label);
Ok(())