Skip to content

Commit 60ff2bc

Browse files
committed
style: format MiMo redirect range
1 parent 477a9d0 commit 60ff2bc

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
- LiteLLM: show personal and team spend amounts directly on budget rows while suppressing duplicate budget sections. Thanks @hololee!
2323

2424
### Fixed
25+
- Xiaomi MiMo: retry later browser sessions when a stale session redirects usage requests to login. Thanks @Yuxin-Qiao!
2526
- Memory: release idle OpenAI WebViews under system pressure without blocking the main thread. Thanks @ProspectOre!
2627
- Memory: trim rebuildable menu and OpenAI debug caches under system pressure. Thanks @ProspectOre!
2728
- Provider plans: keep Claude and Kiro plan matching on one rendered line to avoid bogus labels from adjacent usage hints. Thanks @elijahfriedman!

Sources/CodexBarCore/Providers/MiMo/MiMoUsageFetcher.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public enum MiMoUsageFetcher {
169169
case 200:
170170
break
171171
// Expired browser sessions can redirect API requests to the login flow.
172-
case 300 ..< 400:
172+
case 300..<400:
173173
throw MiMoUsageError.loginRequired
174174
case 401:
175175
throw MiMoUsageError.loginRequired

0 commit comments

Comments
 (0)