You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm facing very strange issue in integration below is the test case.
For first time for store with fresh its working fine for encryption and decryption.When I second time init same store and try to decrypt the message facing issue in sign key code in below function
func signedPreKey(for id: UInt32) throws -> Data {
guard let key = signedKeys[id] else {
throw SignalError(.invalidId, "No signed pre key for id (id)")
}
return key
}
its through the error ""No signed pre key for id (id)".So how can I manage same store.
The text was updated successfully, but these errors were encountered:
Hello All,
I'm facing very strange issue in integration below is the test case.
For first time for store with fresh its working fine for encryption and decryption.When I second time init same store and try to decrypt the message facing issue in sign key code in below function
func signedPreKey(for id: UInt32) throws -> Data {
guard let key = signedKeys[id] else {
throw SignalError(.invalidId, "No signed pre key for id (id)")
}
return key
}
its through the error ""No signed pre key for id (id)".So how can I manage same store.
The text was updated successfully, but these errors were encountered: