Storage service logging same

This commit is contained in:
Josh Perez 2021-04-06 15:54:47 -07:00 committed by GitHub
parent d6bb8ae35e
commit e4db9358cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 80 additions and 46 deletions

View file

@ -173,13 +173,6 @@ export class ConversationModel extends window.Backbone.Model<
return `group(${groupId})`;
}
debugID(): string {
const uuid = this.get('uuid');
const e164 = this.get('e164');
const groupId = this.get('groupId');
return `group(${groupId}), sender(${uuid || e164}), id(${this.id})`;
}
// This is one of the few times that we want to collapse our uuid/e164 pair down into
// just one bit of data. If we have a UUID, we'll send using it.
getSendTarget(): string | undefined {