fix bug with quote empty profileName

pull/1692/head
Audric Ackermann 4 years ago
parent 3c80869418
commit b403b89224
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -639,9 +639,10 @@ export class MessageModel extends Backbone.Model<MessageAttributes> {
}
const { author, id, referencedMessageNotFound } = quote;
const contact = author && ConversationController.getInstance().get(author);
const contact: ConversationModel = author && ConversationController.getInstance().get(author);
const authorName = contact ? contact.getContactProfileNameOrShortenedPubKey() : null;
const authorName = contact ? contact.getName() : null;
const isFromMe = contact ? contact.id === UserUtils.getOurPubKeyStrFromCache() : false;
const onClick = noClick
? null

@ -535,7 +535,6 @@ async function handle421InvalidSwarm({
await dropSnodeFromSwarmIfNeeded(associatedWith, snodeEd25519);
} catch (e) {
if (e.message !== exceptionMessage) {
console.warn('dropSnodeFromSwarmIfNeeded', snodeEd25519);
window?.log?.warn(
'Got error while parsing 421 result. Dropping this snode from the swarm of this pubkey',
e

Loading…
Cancel
Save