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

Commit 093c70d8 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix the null toString logic." into udc-dev am: 217d64da

parents da0e4af7 217d64da
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -286,7 +286,8 @@ class GetFlowUtils {
                            pendingIntent = credentialEntry.pendingIntent,
                            pendingIntent = credentialEntry.pendingIntent,
                            fillInIntent = it.frameworkExtrasIntent,
                            fillInIntent = it.frameworkExtrasIntent,
                            credentialType = CredentialType.UNKNOWN,
                            credentialType = CredentialType.UNKNOWN,
                            credentialTypeDisplayName = credentialEntry.typeDisplayName.toString(),
                            credentialTypeDisplayName =
                            credentialEntry.typeDisplayName?.toString().orEmpty(),
                            userName = credentialEntry.title.toString(),
                            userName = credentialEntry.title.toString(),
                            displayName = credentialEntry.subtitle?.toString(),
                            displayName = credentialEntry.subtitle?.toString(),
                            icon = credentialEntry.icon.loadDrawable(context),
                            icon = credentialEntry.icon.loadDrawable(context),