Rename blocked timestamp.

This commit is contained in:
Michelle Tang
2026-08-19 19:05:50 -04:00
committed by Cody Henthorne
parent e4216b9d05
commit fb0345ff48
10 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -272,7 +272,7 @@ message Contact {
string systemNickname = 20;
optional AvatarColor avatarColor = 21;
optional bytes keyTransparencyData = 22;
uint64 blockedTimestamp = 23; // if `blocked` is true, 0 means unknown block time
uint64 blockedAtTimestamp = 23; // if `blocked` is true, 0 means unknown block time
}
message Group {
@@ -289,7 +289,7 @@ message Group {
GroupSnapshot snapshot = 5;
bool blocked = 6;
optional AvatarColor avatarColor = 7;
uint64 blockedTimestamp = 8; // if `blocked` is true, 0 means unknown block time
uint64 blockedAtTimestamp = 8; // if `blocked` is true, 0 means unknown block time
// These are simply plaintext copies of the groups proto from Groups.proto.
// They should be kept completely in-sync with Groups.proto.
@@ -143,7 +143,7 @@ message ContactRecord {
optional AvatarColor avatarColor = 24;
bytes aciBinary = 25; // 16-byte UUID
bytes pniBinary = 26; // 16-byte UUID
uint64 blockedTimestamp = 27; // 0 means the blocked time is unknown
uint64 blockedAtTimestamp = 27; // 0 means the blocked time is unknown
// Next ID: 28
}
@@ -175,7 +175,7 @@ message GroupV2Record {
StorySendMode storySendMode = 10;
optional AvatarColor avatarColor = 11;
bytes verifiedNameHash = 12; // SHA-256 of UTF-8 encoded decrypted group title that was last verified
uint64 blockedTimestamp = 13; // 0 means the blocked time is unknown
uint64 blockedAtTimestamp = 13; // 0 means the blocked time is unknown
}
message Payments {