Display proper text when quoting view once message
This commit is contained in:
parent
81227066ce
commit
b009967a83
9 changed files with 102 additions and 12 deletions
7
ts/textsecure.d.ts
vendored
7
ts/textsecure.d.ts
vendored
|
@ -653,14 +653,15 @@ export declare namespace DataMessageClass {
|
|||
|
||||
// Note: deep nesting
|
||||
class Quote {
|
||||
id: ProtoBigNumberType | null;
|
||||
authorUuid: string | null;
|
||||
text: string | null;
|
||||
id?: ProtoBigNumberType | null;
|
||||
authorUuid?: string | null;
|
||||
text?: string | null;
|
||||
attachments?: Array<DataMessageClass.Quote.QuotedAttachment>;
|
||||
bodyRanges?: Array<DataMessageClass.BodyRange>;
|
||||
|
||||
// Added later during processing
|
||||
referencedMessageNotFound?: boolean;
|
||||
isViewOnce?: boolean;
|
||||
}
|
||||
|
||||
class BodyRange {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue