mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-17 11:32:05 +00:00
fix task form error
This commit is contained in:
parent
1c3eca74ef
commit
e99ff76f67
2 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="com.habitrpg.android.habitica"
|
||||
android:versionCode="1924"
|
||||
android:versionCode="1925"
|
||||
android:versionName="1.1.6"
|
||||
android:screenOrientation="portrait"
|
||||
android:installLocation="auto" >
|
||||
|
|
|
|||
|
|
@ -421,7 +421,7 @@ public class TaskFormActivity extends BaseActivity implements AdapterView.OnItem
|
|||
|
||||
@Override
|
||||
public void onKeyboardClose() {
|
||||
if (popup.isShowing()) {
|
||||
if (popup != null && popup.isShowing()) {
|
||||
popup.dismiss();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue