From a154b1fe8eb57cd59394c1e7dd09ed133ce4645c Mon Sep 17 00:00:00 2001 From: Naomi Plasterer Date: Mon, 10 Feb 2025 20:44:41 -0800 Subject: [PATCH] Update library/src/main/java/org/xmtp/android/library/Client.kt Co-authored-by: Nicholas Molnar <65710+neekolas@users.noreply.github.com> --- library/src/main/java/org/xmtp/android/library/Client.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/src/main/java/org/xmtp/android/library/Client.kt b/library/src/main/java/org/xmtp/android/library/Client.kt index 3de63750..8c048cd5 100644 --- a/library/src/main/java/org/xmtp/android/library/Client.kt +++ b/library/src/main/java/org/xmtp/android/library/Client.kt @@ -258,7 +258,7 @@ class Client() { ffiClient.applySignatureRequest(signatureRequest) } - @DelicateApi("This function is delicate and should be used with caution. Adding a wallet already associated with an inboxId will cause the wallet to loose access to that inbox. See: inboxIdFromAddress(address)") + @DelicateApi("This function is delicate and should be used with caution. Adding a wallet already associated with an inboxId will cause the wallet to lose access to that inbox. See: inboxIdFromAddress(address)") suspend fun addAccount(newAccount: SigningKey, changeInboxId: Boolean = false) { val inboxId: String? = if (!changeInboxId) inboxIdFromAddress(newAccount.address) else null