diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-03-08 22:59:12 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-03-08 22:59:12 +0530 |
commit | 16d6b1e85341c5ffd55e63aed7680e42c7d8d931 (patch) | |
tree | 38088af8f0751558b03fb643c20e05415c9e96e5 /autofill-parser | |
parent | fe921a58b9040827ff2152c61283c7c41204b2cf (diff) |
fix: use UI context for more `Toast`s
Fixes: a3b88c1dee86 ("fix: use activity context for Toast")
Diffstat (limited to 'autofill-parser')
-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() } } |