Fix synthetic accessor lint error.
This commit is contained in:
parent
634f020ffa
commit
06239bb8a1
|
@ -207,7 +207,7 @@ class EditProfileActivity : BaseActivity(), Injectable {
|
||||||
|
|
||||||
val onBackCallback = object : OnBackPressedCallback(enabled = true) {
|
val onBackCallback = object : OnBackPressedCallback(enabled = true) {
|
||||||
override fun handleOnBackPressed() {
|
override fun handleOnBackPressed() {
|
||||||
if (!viewModel.hasUnsavedChanges(gatherProfileData())) finish()
|
if (!viewModel.hasUnsavedChanges(profileData)) finish()
|
||||||
|
|
||||||
lifecycleScope.launch {
|
lifecycleScope.launch {
|
||||||
when (showConfirmationDialog()) {
|
when (showConfirmationDialog()) {
|
||||||
|
@ -224,16 +224,17 @@ class EditProfileActivity : BaseActivity(), Injectable {
|
||||||
override fun onStop() {
|
override fun onStop() {
|
||||||
super.onStop()
|
super.onStop()
|
||||||
if (!isFinishing) {
|
if (!isFinishing) {
|
||||||
viewModel.updateProfile(gatherProfileData())
|
viewModel.updateProfile(profileData)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun gatherProfileData() = ProfileData(
|
private val profileData
|
||||||
displayName = binding.displayNameEditText.text.toString(),
|
get() = ProfileData(
|
||||||
note = binding.noteEditText.text.toString(),
|
displayName = binding.displayNameEditText.text.toString(),
|
||||||
locked = binding.lockedCheckBox.isChecked,
|
note = binding.noteEditText.text.toString(),
|
||||||
fields = accountFieldEditAdapter.getFieldData()
|
locked = binding.lockedCheckBox.isChecked,
|
||||||
)
|
fields = accountFieldEditAdapter.getFieldData())
|
||||||
|
|
||||||
|
|
||||||
private fun observeImage(
|
private fun observeImage(
|
||||||
liveData: LiveData<Uri>,
|
liveData: LiveData<Uri>,
|
||||||
|
@ -308,7 +309,7 @@ class EditProfileActivity : BaseActivity(), Injectable {
|
||||||
return super.onOptionsItemSelected(item)
|
return super.onOptionsItemSelected(item)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun save() = viewModel.save(gatherProfileData())
|
private fun save() = viewModel.save(profileData)
|
||||||
|
|
||||||
private fun onSaveFailure(msg: String?) {
|
private fun onSaveFailure(msg: String?) {
|
||||||
val errorMsg = msg ?: getString(R.string.error_media_upload_sending)
|
val errorMsg = msg ?: getString(R.string.error_media_upload_sending)
|
||||||
|
|
Loading…
Reference in New Issue