Fix crash in EditProfileActivity on Android 8 (#585)

* fix bug where sometimes mentions where duplicated when replying

* fix for crash on Android 8
main
Konrad Pozniak 6 years ago committed by GitHub
parent 5c91f3b993
commit 8543df733c
  1. 2
      app/src/main/res/layout/activity_edit_profile.xml

@ -91,6 +91,7 @@
android:layout_marginEnd="16dp"
android:layout_marginStart="16dp"
android:hint="@string/hint_display_name"
android:importantForAutofill="no"
android:maxLength="30" />
</android.support.design.widget.TextInputLayout>
@ -109,6 +110,7 @@
android:layout_marginEnd="16dp"
android:layout_marginStart="16dp"
android:hint="@string/hint_note"
android:importantForAutofill="no"
android:maxLength="160" />
</android.support.design.widget.TextInputLayout>

Loading…
Cancel
Save