From 17ae8bc68acd36002411e82476ce6dbec8805b7e Mon Sep 17 00:00:00 2001 From: Brant DeBow <125889545+brant-livefront@users.noreply.github.com> Date: Tue, 29 Oct 2024 15:41:02 -0400 Subject: [PATCH] [BITAU-177] Add Default for accountDomain (#1088) --- .../Core/Platform/Services/AuthenticatorSyncService.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BitwardenShared/Core/Platform/Services/AuthenticatorSyncService.swift b/BitwardenShared/Core/Platform/Services/AuthenticatorSyncService.swift index 8a4fef24c..f69d4b3c6 100644 --- a/BitwardenShared/Core/Platform/Services/AuthenticatorSyncService.swift +++ b/BitwardenShared/Core/Platform/Services/AuthenticatorSyncService.swift @@ -205,7 +205,7 @@ actor DefaultAuthenticatorSyncService: NSObject, AuthenticatorSyncService { return decryptedCiphers.map { cipher in AuthenticatorBridgeItemDataView( - accountDomain: account.settings.environmentUrls?.webVaultHost, + accountDomain: account.settings.environmentUrls?.webVaultHost ?? Constants.defaultWebVaultHost, accountEmail: account.profile.email, favorite: false, id: cipher.id ?? UUID().uuidString,