mirror of
https://github.com/bitwarden/android.git
synced 2025-03-16 03:08:50 +03:00
Ensure BitwardenAppComponentFactory is call correct super methods (#1338)
This commit is contained in:
parent
652593ffb5
commit
c9b92de420
1 changed files with 2 additions and 2 deletions
|
@ -26,9 +26,9 @@ class BitwardenAppComponentFactory : AppComponentFactory() {
|
|||
intent: Intent?,
|
||||
): Service = when (className) {
|
||||
LEGACY_AUTOFILL_SERVICE_NAME -> {
|
||||
super.instantiateService(cl, BitwardenAutofillService::class.java.name, intent)
|
||||
super.instantiateServiceCompat(cl, BitwardenAutofillService::class.java.name, intent)
|
||||
}
|
||||
|
||||
else -> super.instantiateService(cl, className, intent)
|
||||
else -> super.instantiateServiceCompat(cl, className, intent)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue