Add extra catch to adding system contact links.

This commit is contained in:
Greyson Parrelli
2024-11-20 19:49:02 -05:00
parent 8b2d17c5c8
commit 03b1ffe415

View File

@@ -83,6 +83,8 @@ class SyncSystemContactLinksJob private constructor(parameters: Parameters) : Ba
Log.w(TAG, "[addSystemContactLinks] Failed to add links to contacts.", e)
} catch (e: OperationApplicationException) {
Log.w(TAG, "[addSystemContactLinks] Failed to add links to contacts.", e)
} catch (e: IllegalArgumentException) {
Log.w(TAG, "[addSystemContactLinks] Failed to add links to contacts.", e)
}
}