Add story boolean to envelope proto.

This commit is contained in:
Alex Hart
2022-09-20 16:04:08 -03:00
committed by Cody Henthorne
parent 9e094dfc2b
commit 9dd96148d1
6 changed files with 34 additions and 11 deletions

View File

@@ -34,6 +34,7 @@ message SignalServiceEnvelopeProto {
optional string serverGuid = 10;
optional string destinationUuid = 11;
optional bool urgent = 12 [default = true];
optional bool story = 13;
}
message MetadataProto {

View File

@@ -35,7 +35,8 @@ message Envelope {
optional uint64 serverTimestamp = 10;
optional bool urgent = 14 [default = true];
reserved /*updatedPni*/ 15; // Not used presently, may be used in the future
// NEXT ID: 16
optional bool story = 16;
// NEXT ID: 17
}
message Content {