fix: align group-handle test expectation (#42) (thanks @shivshil)

This commit is contained in:
Peter Steinberger 2026-02-16 04:49:56 +01:00
parent f849fcab14
commit 3406429299
2 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@
- fix: apply history filters before limit (#20, thanks @tommybananas)
- fix: flush watch output immediately when stdout is buffered (#43, thanks @ccaum)
- feat: include `thread_originator_guid` in message output (#39, thanks @ruthmade)
- fix: detect groups from `;+;` prefix in guid/identifier for RPC payloads (#42, thanks @shivshil)
## 0.4.0 - 2026-01-07
- feat: surface audio message transcriptions (thanks @antons)

View File

@ -7,7 +7,7 @@ import Testing
@Test
func isGroupHandleFlagsGroup() {
#expect(isGroupHandle(identifier: "iMessage;+;chat123", guid: "") == true)
#expect(isGroupHandle(identifier: "", guid: "iMessage;-;chat999") == true)
#expect(isGroupHandle(identifier: "", guid: "iMessage;-;chat999") == false)
#expect(isGroupHandle(identifier: "+1555", guid: "") == false)
}