From f43dc13403e84f7dd87d94d9395e4b6f2af92827 Mon Sep 17 00:00:00 2001 From: William Grant Date: Fri, 13 Oct 2023 16:09:10 +1100 Subject: [PATCH] chore: made note about the hasOutdatedClient prop we will remove it when we remove the legacy code --- ts/models/conversationAttributes.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ts/models/conversationAttributes.ts b/ts/models/conversationAttributes.ts index 6ab29b541..308e5f13b 100644 --- a/ts/models/conversationAttributes.ts +++ b/ts/models/conversationAttributes.ts @@ -110,6 +110,8 @@ export interface ConversationAttributes { expirationMode: DisappearingMessageConversationModeType; /** to avoid applying a change of disappear change when our current one was applied more recently */ lastDisappearingMessageChangeTimestamp: number; + // TODO legacy messages support will be removed in a future release + // TODO we need to make a migration to remove this value from the db since the implementation is hacky /** to warn the user that the person he is talking to is using an old client which might cause issues */ hasOutdatedClient?: string; }