Skip to content

Commit

Permalink
missing try
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Nov 13, 2024
1 parent 3c0c0a3 commit 19afe06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/XMTPModule.swift
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public class XMTPModule: Module {
}
let inboxStates = try await client.inboxStatesForInboxIds(
refreshFromNetwork: refreshFromNetwork, inboxIds: inboxIds)
return try inboxStates.map { InboxStateWrapper.encode($0) }
return try inboxStates.map { try InboxStateWrapper.encode($0) }
}

Function("preAuthenticateToInboxCallbackCompleted") {
Expand Down

0 comments on commit 19afe06

Please sign in to comment.