fix task form error

This commit is contained in:
Phillip Thelen 2017-08-07 11:32:32 +02:00
parent 1c3eca74ef
commit e99ff76f67
2 changed files with 2 additions and 2 deletions

View file

@ -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" >

View file

@ -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();
}
}