Message Send Log: Increase retention length

This commit is contained in:
Scott Nonnenberg 2021-08-05 17:17:23 -07:00 committed by GitHub
parent 12d2b1bf7c
commit 5069f48cf0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 11 deletions

View file

@ -1882,12 +1882,12 @@ export default class MessageSender {
const ourUuid = window.textsecure.storage.user.getUuid();
if (!ourUuid) {
throw new Error(
'sendSenderKeyDistributionMessage: Failed to fetch our UUID!'
'getSenderKeyDistributionMessage: Failed to fetch our UUID!'
);
}
const ourDeviceId = parseIntOrThrow(
window.textsecure.storage.user.getDeviceId(),
'sendSenderKeyDistributionMessage'
'getSenderKeyDistributionMessage'
);
const protocolAddress = ProtocolAddress.new(ourUuid, ourDeviceId);