AutofillFragment: Repair semantics for newest AppCompat changes

Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
This commit is contained in:
Harsh Shandilya 2019-07-05 15:23:15 +05:30
parent 4207bfe2de
commit c6363dc86d
No known key found for this signature in database
GPG key ID: C2E74282C2133D62

View file

@ -124,7 +124,7 @@ class AutofillFragment : DialogFragment() {
val positiveButton = ad.getButton(Dialog.BUTTON_POSITIVE)
positiveButton.setOnClickListener {
val callingActivity = requireActivity() as AutofillPreferenceActivity
val dialog = dialog
val dialog = requireDialog()
val args = requireNotNull(arguments)
val prefs: SharedPreferences = if (!isWeb) {
@ -199,8 +199,8 @@ class AutofillFragment : DialogFragment() {
}
}
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent) {
if (resultCode == AppCompatActivity.RESULT_OK) {
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
if (resultCode == AppCompatActivity.RESULT_OK && data != null) {
adapter!!.add(data.getStringExtra("path"))
}
}