From 09d50304552aba11f9dde034dbebf4093c088b0a Mon Sep 17 00:00:00 2001 From: Max Radermacher Date: Thu, 27 Mar 2025 13:17:00 -0500 Subject: [PATCH] =?UTF-8?q?Fix=20typo:=20=E2=80=9Cap=E2=80=9D=20=E2=86=92?= =?UTF-8?q?=20=E2=80=9CMap=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Archivers/Recipient/RecipientContexts.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SignalServiceKit/MessageBackup/Archivers/Recipient/RecipientContexts.swift b/SignalServiceKit/MessageBackup/Archivers/Recipient/RecipientContexts.swift index 83c2e50581..c3039985ac 100644 --- a/SignalServiceKit/MessageBackup/Archivers/Recipient/RecipientContexts.swift +++ b/SignalServiceKit/MessageBackup/Archivers/Recipient/RecipientContexts.swift @@ -127,7 +127,7 @@ extension MessageBackup { private let distributionIdMap = SharedMap() private let contactAciMap = SharedMap() private let contactPniMap = SharedMap() - private let contactE164ap = SharedMap() + private let contactE164Map = SharedMap() private let callLinkIdMap = SharedMap() init( @@ -153,7 +153,7 @@ extension MessageBackup { contactPniMap[pni] = localRecipientId } if let e164 = E164(localIdentifiers.phoneNumber) { - contactE164ap[e164] = localRecipientId + contactE164Map[e164] = localRecipientId } super.init( @@ -186,7 +186,7 @@ extension MessageBackup { contactPniMap[pni] = currentRecipientId } if let e164 = contactAddress.e164 { - contactE164ap[e164] = currentRecipientId + contactE164Map[e164] = currentRecipientId } case .callLink(let callLinkId): callLinkIdMap[callLinkId] = currentRecipientId @@ -209,7 +209,7 @@ extension MessageBackup { if let aci = contactAddress.aci { return contactAciMap[aci] } else if let e164 = contactAddress.e164 { - return contactE164ap[e164] + return contactE164Map[e164] } else if let pni = contactAddress.pni { return contactPniMap[pni] } else {