mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 12:19:41 +00:00
Ensure that messages to initiate calls are marked urgent=true
This commit is contained in:
@@ -1702,6 +1702,7 @@ export default class MessageSender {
|
||||
async sendCallingMessage(
|
||||
serviceId: ServiceIdString,
|
||||
callingMessage: Readonly<Proto.ICallingMessage>,
|
||||
urgent: boolean,
|
||||
options?: Readonly<SendOptionsType>
|
||||
): Promise<CallbackResultType> {
|
||||
const recipients = [serviceId];
|
||||
@@ -1727,7 +1728,7 @@ export default class MessageSender {
|
||||
contentHint: ContentHint.DEFAULT,
|
||||
groupId: undefined,
|
||||
options,
|
||||
urgent: true,
|
||||
urgent,
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user