diff options
Diffstat (limited to 'autofill-parser/src')
-rw-r--r-- | autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillHelper.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillHelper.kt b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillHelper.kt index 0b4f491d..dbdfad17 100644 --- a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillHelper.kt +++ b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/AutofillHelper.kt @@ -88,7 +88,7 @@ internal val AssistStructure.ViewNode.webOrigin: String? } @RequiresApi(Build.VERSION_CODES.O) -public class FixedSaveCallback(context: Context, private val callback: SaveCallback) { +public class FixedSaveCallback(private val context: Context, private val callback: SaveCallback) { private val applicationContext = context.applicationContext @@ -98,7 +98,7 @@ public class FixedSaveCallback(context: Context, private val callback: SaveCallb // See // https://developer.android.com/reference/android/service/autofill/SaveCallback#onFailure(java.lang.CharSequence) if (applicationContext.applicationInfo.targetSdkVersion >= 29) { - Toast.makeText(applicationContext, message, Toast.LENGTH_LONG).show() + Toast.makeText(context, message, Toast.LENGTH_LONG).show() } } |