huskies: merge 988

This commit is contained in:
dave
2026-05-13 17:24:18 +00:00
parent a078d3df7c
commit caed894db9
15 changed files with 169 additions and 81 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ pub fn is_story_frozen_in_store(story_id: &str) -> bool {
crate::pipeline_state::read_typed(story_id)
.ok()
.flatten()
.map(|item| item.is_frozen())
.map(|item| matches!(item.stage, crate::pipeline_state::Stage::Frozen { .. }))
.unwrap_or(false)
}