We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0ed8e4b + fae72ad commit 0406bc8Copy full SHA for 0406bc8
1 file changed
internal/api/rust/session_delegate.go
@@ -15,7 +15,7 @@ func NewMemoryClientSessionDelegate() *MemoryClientSessionDelegate {
15
func (d *MemoryClientSessionDelegate) RetrieveSessionFromKeychain(userID string) (matrix_sdk_ffi.Session, *matrix_sdk_ffi.ClientError) {
16
s, exists := d.userIDToSession[userID]
17
if !exists {
18
- return matrix_sdk_ffi.Session{}, matrix_sdk_ffi.NewClientErrorGeneric("Failed to find RestorationToken in the Keychain.")
+ return matrix_sdk_ffi.Session{}, matrix_sdk_ffi.NewClientErrorGeneric("Failed to find RestorationToken in the Keychain.", nil)
19
}
20
return s, nil
21
0 commit comments