Update to latest backup integration tests

This commit is contained in:
trevor-signal
2025-01-28 12:02:13 -05:00
committed by GitHub
parent adcbccdc9f
commit b535f34b73
4 changed files with 11 additions and 11 deletions
+4 -2
View File
@@ -729,8 +729,10 @@ message BodyRange {
MONOSPACE = 5;
}
optional uint32 start = 1;
optional uint32 length = 2;
// 'start' and 'length' are measured in UTF-16 code units.
// They may refer to offsets in a longText attachment.
uint32 start = 1;
uint32 length = 2;
oneof associatedValue {
bytes mentionAci = 3;
+3 -3
View File
@@ -310,9 +310,9 @@ message DataMessage {
STRIKETHROUGH = 4;
MONOSPACE = 5;
}
optional uint32 start = 1;
optional uint32 length = 2;
optional uint32 start = 1; // Starting index in UTF-16 code units/raw string representation
optional uint32 length = 2; // Length of range in UTF-16 code units/raw string representation
oneof associatedValue {
string mentionAci = 3;