File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
app/src/main/kotlin/com/x8bit/bitwarden/data/autofill/util Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import androidx.annotation.VisibleForTesting
77import com.bitwarden.ui.platform.base.util.orNullIfBlank
88import com.x8bit.bitwarden.data.autofill.model.AutofillHint
99import com.x8bit.bitwarden.data.autofill.model.AutofillView
10+ import timber.log.Timber
1011
1112/* *
1213 * The default web URI scheme.
@@ -50,6 +51,7 @@ private val AssistStructure.ViewNode.isInputField: Boolean
5051 * it doesn't have a supported hint and isn't an input field, we also return null.
5152 */
5253fun AssistStructure.ViewNode.toAutofillView (): AutofillView ? {
54+ Timber .tag(" AUTOFILL" ).e(" AutofillViewData: $website -- $supportedAutofillHint -- $isFocused " )
5355 val nonNullAutofillId = this .autofillId ? : return null
5456 if (this .supportedAutofillHint == null && ! this .isInputField) return null
5557 val autofillOptions = this
You can’t perform that action at this time.
0 commit comments