remove closeDatabase calls causing crashes
This commit is contained in:
parent
c11e2fcd7a
commit
0fec3c6a6f
4 changed files with 2 additions and 6 deletions
|
@ -1022,6 +1022,8 @@ public class MainActivity extends AppCompatActivity implements SdkStatusListener
|
|||
public void clearWunderbarFocus(View view) {
|
||||
findViewById(R.id.wunderbar).clearFocus();
|
||||
findViewById(R.id.app_bar_main_container).requestFocus();
|
||||
InputMethodManager imm = (InputMethodManager) getSystemService(Activity.INPUT_METHOD_SERVICE);
|
||||
imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
|
||||
}
|
||||
public View getWunderbar() {
|
||||
return findViewById(R.id.wunderbar);
|
||||
|
|
|
@ -112,8 +112,6 @@ public class MergeSubscriptionsTask extends AsyncTask<Void, Void, List<Subscript
|
|||
} catch (ClassCastException | LbryioRequestException | LbryioResponseException | JSONException | IllegalStateException | SQLiteException ex) {
|
||||
error = ex;
|
||||
return null;
|
||||
} finally {
|
||||
Helper.closeDatabase(db);
|
||||
}
|
||||
|
||||
return combined;
|
||||
|
|
|
@ -64,8 +64,6 @@ public class ChannelSubscribeTask extends AsyncTask<Void, Void, Boolean> {
|
|||
} catch (LbryioRequestException | LbryioResponseException | SQLiteException ex) {
|
||||
error = ex;
|
||||
return false;
|
||||
} finally {
|
||||
Helper.closeDatabase(db);
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
|
@ -64,8 +64,6 @@ public class FetchSubscriptionsTask extends AsyncTask<Void, Void, List<Subscript
|
|||
} catch (ClassCastException | LbryioRequestException | LbryioResponseException | JSONException | IllegalStateException ex) {
|
||||
error = ex;
|
||||
return null;
|
||||
} finally {
|
||||
Helper.closeDatabase(db);
|
||||
}
|
||||
|
||||
return subscriptions;
|
||||
|
|
Loading…
Reference in a new issue