1
0
Fork 0
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:
Sergey 2025-04-29 12:46:10 +02:00
parent 535bb96335
commit 8cbf19e72d
No known key found for this signature in database
GPG key ID: 3B6BEF79160221C6
4 changed files with 542 additions and 583 deletions

File diff suppressed because it is too large Load diff

View file

@ -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;
}
}
}