Merge "Fix the null toString logic." into udc-dev am: 217d64daaa
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/23048862 Change-Id: Iee6cce3f7e8171ae3dc4f2b405faeeb3c211c60f Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -286,7 +286,8 @@ class GetFlowUtils {
|
||||
pendingIntent = credentialEntry.pendingIntent,
|
||||
fillInIntent = it.frameworkExtrasIntent,
|
||||
credentialType = CredentialType.UNKNOWN,
|
||||
credentialTypeDisplayName = credentialEntry.typeDisplayName.toString(),
|
||||
credentialTypeDisplayName =
|
||||
credentialEntry.typeDisplayName?.toString().orEmpty(),
|
||||
userName = credentialEntry.title.toString(),
|
||||
displayName = credentialEntry.subtitle?.toString(),
|
||||
icon = credentialEntry.icon.loadDrawable(context),
|
||||
|
||||
Reference in New Issue
Block a user