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

Commit 4e6b43c8 authored by Reema Bajwa's avatar Reema Bajwa
Browse files

Fix build issues w/ jetpck drop

Bug: 298486662
Test: N/A - Build issue only

Change-Id: I809b0abef1a33d39082448f8d504ef54e0793da6
parent 5ade91be
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -127,10 +127,10 @@ private fun getCredentialOptionInfoList(
                    userName = credentialEntry.username.toString(),
                    displayName = credentialEntry.displayName?.toString(),
                    icon = credentialEntry.icon.loadDrawable(context),
                    shouldTintIcon = credentialEntry.isDefaultIcon,
                    shouldTintIcon = credentialEntry.hasDefaultIcon,
                    lastUsedTimeMillis = credentialEntry.lastUsedTime,
                    isAutoSelectable = credentialEntry.isAutoSelectAllowed &&
                            credentialEntry.autoSelectAllowedFromOption,
                            credentialEntry.isAutoSelectAllowedFromOption,
                )
                )
            }
@@ -148,10 +148,10 @@ private fun getCredentialOptionInfoList(
                    userName = credentialEntry.username.toString(),
                    displayName = credentialEntry.displayName?.toString(),
                    icon = credentialEntry.icon.loadDrawable(context),
                    shouldTintIcon = credentialEntry.isDefaultIcon,
                    shouldTintIcon = credentialEntry.hasDefaultIcon,
                    lastUsedTimeMillis = credentialEntry.lastUsedTime,
                    isAutoSelectable = credentialEntry.isAutoSelectAllowed &&
                            credentialEntry.autoSelectAllowedFromOption,
                            credentialEntry.isAutoSelectAllowedFromOption,
                )
                )
            }
@@ -170,10 +170,10 @@ private fun getCredentialOptionInfoList(
                    userName = credentialEntry.title.toString(),
                    displayName = credentialEntry.subtitle?.toString(),
                    icon = credentialEntry.icon.loadDrawable(context),
                    shouldTintIcon = credentialEntry.isDefaultIcon,
                    shouldTintIcon = credentialEntry.hasDefaultIcon,
                    lastUsedTimeMillis = credentialEntry.lastUsedTime,
                    isAutoSelectable = credentialEntry.isAutoSelectAllowed &&
                            credentialEntry.autoSelectAllowedFromOption,
                            credentialEntry.isAutoSelectAllowedFromOption,
                )
                )
            }