We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a4b496 commit 6e943f6Copy full SHA for 6e943f6
library/src/main/java/org/xmtp/android/library/push/README.md
@@ -81,9 +81,9 @@ These files can serve as the basis for what you might want to provide for your o
81
```
82
83
```kotlin
84
- val hmacKeys = hmacKeysResult.hmacKeysMap
+ val hmacKeysResult = ClientManager.client.conversations.getHmacKeys()
85
val subscriptions = conversations.map {
86
- val hmacKeysResult = ClientManager.client.conversations.getHmacKeys()
+ val hmacKeys = hmacKeysResult.hmacKeysMap
87
val result = hmacKeys[it.topic]?.valuesList?.map { hmacKey ->
88
Service.Subscription.HmacKey.newBuilder().also { sub_key ->
89
sub_key.key = hmacKey.hmacKey
0 commit comments