Show "unplayed" dot on incoming audio messages
This commit is contained in:
parent
9fd191ae00
commit
b0750e5f4e
36 changed files with 812 additions and 175 deletions
5
ts/model-types.d.ts
vendored
5
ts/model-types.d.ts
vendored
|
@ -15,6 +15,7 @@ import { MessageModel } from './models/messages';
|
|||
import { ConversationModel } from './models/conversations';
|
||||
import { ProfileNameChangeType } from './util/getStringForProfileChange';
|
||||
import { CapabilitiesType } from './textsecure/WebAPI';
|
||||
import { ReadStatus } from './messages/MessageReadStatus';
|
||||
import {
|
||||
SendState,
|
||||
SendStateByConversationId,
|
||||
|
@ -182,7 +183,6 @@ export type MessageAttributesType = {
|
|||
source?: string;
|
||||
sourceUuid?: string;
|
||||
|
||||
unread?: boolean;
|
||||
timestamp: number;
|
||||
|
||||
// Backwards-compatibility with prerelease data schema
|
||||
|
@ -191,6 +191,9 @@ export type MessageAttributesType = {
|
|||
|
||||
sendHQImages?: boolean;
|
||||
|
||||
// Should only be present for incoming messages
|
||||
readStatus?: ReadStatus;
|
||||
|
||||
// Should only be present for outgoing messages
|
||||
sendStateByConversationId?: SendStateByConversationId;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue