From 67aeeb3a3b28e9544c1c94dce1e2545d2d0346e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20=C3=85berg?= Date: Tue, 14 Oct 2025 15:40:46 -0700 Subject: [PATCH] added comment to clarify silent exception --- .../desktop_native/objc/src/native/autofill/commands/sync.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/desktop/desktop_native/objc/src/native/autofill/commands/sync.m b/apps/desktop/desktop_native/objc/src/native/autofill/commands/sync.m index 30c8c1d8d59..037a97c7590 100644 --- a/apps/desktop/desktop_native/objc/src/native/autofill/commands/sync.m +++ b/apps/desktop/desktop_native/objc/src/native/autofill/commands/sync.m @@ -68,6 +68,8 @@ void runSync(void* context, NSDictionary *params) { } } @catch (NSException *exception) { // Silently skip any credential that causes an exception + // to make sure we don't fail the entire sync + // There is likely some invalid data in the credential, and not something the user should/could be asked to correct. NSLog(@"ERROR: Exception processing credential: %@ - %@", exception.name, exception.reason); continue; }