Clean up UUID-handling to prepare for future

This commit is contained in:
Scott Nonnenberg 2020-12-09 14:26:37 -08:00 committed by GitHub
parent 5369950c1d
commit 3f58a9b762
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 55 additions and 31 deletions

View file

@ -2428,7 +2428,6 @@ export class ConversationModel extends window.Backbone.Model<
: '';
return {
author: contact.get('e164'),
authorUuid: contact.get('uuid'),
bodyRanges: quotedMessage.get('bodyRanges'),
id: quotedMessage.get('sent_at'),
@ -2594,7 +2593,6 @@ export class ConversationModel extends window.Backbone.Model<
async sendReactionMessage(
reaction: { emoji: string; remove: boolean },
target: {
targetAuthorE164: string;
targetAuthorUuid: string;
targetTimestamp: number;
}