Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d2786a80 authored by Helen Qin's avatar Helen Qin
Browse files

Fix the null toString logic.

Test: manual (see bug for screenshot)
Bug: 280896321
Change-Id: Ied05c43a09d6a2086dc60d7c9d5cb1d35a8bba91
parent 9e6c6ca8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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),