mirror of
https://github.com/anyproto/anytype-heart.git
synced 2025-06-09 09:35:00 +09:00
GO-5297: Fix encryption key id
This commit is contained in:
parent
535bb96335
commit
8cbf19e72d
4 changed files with 542 additions and 583 deletions
997
pb/events.pb.go
997
pb/events.pb.go
File diff suppressed because it is too large
Load diff
|
@ -122,7 +122,7 @@ message Event {
|
|||
|
||||
Chat.Delete chatDelete = 131;
|
||||
Chat.UpdateState chatStateUpdate = 133; // in case new unread messages received or chat state changed (e.g. message read on another device)
|
||||
Key.Update keyUpdate = 136;
|
||||
PushEncryptionKey.Update pushEncryptionKeyUpdate = 136;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1191,11 +1191,10 @@ message Event {
|
|||
}
|
||||
}
|
||||
|
||||
message Key {
|
||||
message PushEncryptionKey {
|
||||
message Update {
|
||||
string spaceKeyId = 1;
|
||||
string encryptionKeyId = 2;
|
||||
string encryptionKey = 3;
|
||||
string encryptionKeyId = 1;
|
||||
string encryptionKey = 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue