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

Commit 27bd04e2 authored by Anvesh Renikindi's avatar Anvesh Renikindi Committed by Android (Google) Code Review
Browse files

Merge "Use safe calls for icons."

parents 23291c8a e5a86aaf
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -198,7 +198,7 @@ class GetFlowUtils {
                            credentialTypeDisplayName = credentialEntry.typeDisplayName.toString(),
                            userName = credentialEntry.username.toString(),
                            displayName = credentialEntry.displayName?.toString(),
                            icon = credentialEntry.icon.loadDrawable(context),
                            icon = credentialEntry.icon?.loadDrawable(context),
                            lastUsedTimeMillis = credentialEntry.lastUsedTime,
                        ))
                    }
@@ -213,7 +213,7 @@ class GetFlowUtils {
                            credentialTypeDisplayName = credentialEntry.typeDisplayName.toString(),
                            userName = credentialEntry.username.toString(),
                            displayName = credentialEntry.displayName?.toString(),
                            icon = credentialEntry.icon.loadDrawable(context),
                            icon = credentialEntry.icon?.loadDrawable(context),
                            lastUsedTimeMillis = credentialEntry.lastUsedTime,
                        ))
                    }
@@ -228,7 +228,7 @@ class GetFlowUtils {
                            credentialTypeDisplayName = credentialEntry.typeDisplayName.toString(),
                            userName = credentialEntry.title.toString(),
                            displayName = credentialEntry.subtitle?.toString(),
                            icon = credentialEntry.icon.loadDrawable(context),
                            icon = credentialEntry.icon?.loadDrawable(context),
                            lastUsedTimeMillis = credentialEntry.lastUsedTime,
                        ))
                    }