story-kit: merge 262_story_bot_error_notifications_for_story_failures

This commit is contained in:
Dave
2026-03-17 15:26:15 +00:00
parent bf5d9ff6b1
commit 96779c9caf
4 changed files with 98 additions and 0 deletions

View File

@@ -150,6 +150,9 @@ impl From<WatcherEvent> for Option<WsResponse> {
}),
WatcherEvent::ConfigChanged => Some(WsResponse::AgentConfigChanged),
WatcherEvent::AgentStateChanged => Some(WsResponse::AgentStateChanged),
// MergeFailure is handled by the Matrix notification listener only;
// no WebSocket message is needed for the frontend.
WatcherEvent::MergeFailure { .. } => None,
}
}
}