remove decrypted_at field from saving message models as unused

pull/2142/head
Audric Ackermann 3 years ago
parent 6f5bca6660
commit 7d9f970b2c
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -19,7 +19,6 @@ export interface MessageAttributes {
body?: string;
expirationStartTimestamp: number;
read_by: Array<string>;
decrypted_at: number;
expires_at?: number;
type: MessageModelType;
group_update?: MessageGroupUpdate;
@ -135,7 +134,6 @@ export interface MessageAttributesOptionals {
body?: string;
expirationStartTimestamp?: number;
read_by?: Array<string>;
decrypted_at?: number;
expires_at?: number;
type: MessageModelType;
group_update?: MessageGroupUpdate;

@ -233,7 +233,6 @@ async function handleRegularMessage(
attachments: rawDataMessage.attachments,
body: rawDataMessage.body,
conversationId: conversation.id,
decrypted_at: now,
messageHash,
errors: [],
});

@ -244,7 +244,7 @@ async function _runJob(job: any) {
logger.error(
`_runJob: Failed to download attachment type ${type} for message ${found?.idForLogging()}, attempt ${currentAttempt}:`,
error && error.stack ? error.stack : error
error && error.message ? error.message : error
);
const failedJob = {

@ -13,7 +13,6 @@ export type IncomingMessage = Readonly<
// Optional
body?: string;
decrypted_at?: number;
errors?: Array<any>;
expireTimer?: number;
flags?: number;

Loading…
Cancel
Save