Commit f254371
authored
fix: populate logData() map in JoinExistingMLSConversationUseCase (#3850)
The buildMap block used infix 'to' which creates Pairs but does not
insert them into the map. All structured join log lines (Success,
Failure, Ignored, Reset) emitted empty JSON {}, making it impossible
to correlate errors to specific conversations from logs.
Replace 'key to value' with put(key, value).1 parent 9e0501a commit f254371
File tree
1 file changed
+5
-5
lines changed- logic/src/commonMain/kotlin/com/wire/kalium/logic/data/conversation
1 file changed
+5
-5
lines changedLines changed: 5 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
251 | 251 | | |
252 | 252 | | |
253 | 253 | | |
254 | | - | |
255 | | - | |
256 | | - | |
257 | | - | |
258 | | - | |
| 254 | + | |
| 255 | + | |
| 256 | + | |
| 257 | + | |
| 258 | + | |
259 | 259 | | |
260 | 260 | | |
0 commit comments