style(daemon): rustfmt collapse get_pending_status match arm

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
michael
2026-04-27 10:55:51 -07:00
parent b8e8368a25
commit 2ed95d21da

View File

@@ -261,7 +261,10 @@ impl AppState {
pub async fn get_pending_status(&self, user: &str) -> Result<PendingStatus, StateError> {
match self.pending.get(user)? {
Some(flag) => Ok(PendingStatus { present: true, flag }),
Some(flag) => Ok(PendingStatus {
present: true,
flag,
}),
None => Ok(PendingStatus {
present: false,
flag: PendingFlag::default(),