1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-07 20:24:01 +00:00

added comment to clarify silent exception

This commit is contained in:
Anders Åberg
2025-10-14 15:40:46 -07:00
parent 81b3190c55
commit 67aeeb3a3b

View File

@@ -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;
}