mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-25 04:36:46 +00:00
Remove unnecessary non-null assertion
This commit is contained in:
@@ -1831,8 +1831,7 @@ export class ConversationModel extends window.Backbone.Model<
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
||||
const destination = this.getSendTarget()!;
|
||||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
||||
const recipients = this.getRecipients()!;
|
||||
const recipients = this.getRecipients();
|
||||
|
||||
let profileKey: ArrayBuffer | undefined;
|
||||
if (this.get('profileSharing')) {
|
||||
|
||||
Reference in New Issue
Block a user