Skip to content
Snippets Groups Projects
Unverified Commit e8ebdc28 authored by akwizgran's avatar akwizgran
Browse files

Don't finish nav drawer fragments on error.

parent 2140a290
No related branches found
No related tags found
No related merge requests found
...@@ -125,7 +125,6 @@ public class FeedFragment extends BaseFragment implements ...@@ -125,7 +125,6 @@ public class FeedFragment extends BaseFragment implements
@Override @Override
public void onExceptionUi(DbException exception) { public void onExceptionUi(DbException exception) {
// TODO: Decide how to handle errors in the UI // TODO: Decide how to handle errors in the UI
finish();
} }
}); });
} }
...@@ -151,7 +150,6 @@ public class FeedFragment extends BaseFragment implements ...@@ -151,7 +150,6 @@ public class FeedFragment extends BaseFragment implements
@Override @Override
public void onExceptionUi(DbException e) { public void onExceptionUi(DbException e) {
// TODO: Decide how to handle errors in the UI // TODO: Decide how to handle errors in the UI
finish();
} }
}); });
list.startPeriodicUpdate(); list.startPeriodicUpdate();
...@@ -214,7 +212,6 @@ public class FeedFragment extends BaseFragment implements ...@@ -214,7 +212,6 @@ public class FeedFragment extends BaseFragment implements
@Override @Override
public void onExceptionUi(DbException exception) { public void onExceptionUi(DbException exception) {
// TODO: Decide how to handle errors in the UI // TODO: Decide how to handle errors in the UI
finish();
} }
} }
); );
......
...@@ -114,7 +114,6 @@ public class GroupListFragment extends BaseFragment implements ...@@ -114,7 +114,6 @@ public class GroupListFragment extends BaseFragment implements
@Override @Override
public void onExceptionUi(DbException exception) { public void onExceptionUi(DbException exception) {
// TODO handle error // TODO handle error
finish();
} }
}); });
} }
...@@ -169,7 +168,6 @@ public class GroupListFragment extends BaseFragment implements ...@@ -169,7 +168,6 @@ public class GroupListFragment extends BaseFragment implements
@Override @Override
public void onExceptionUi(DbException exception) { public void onExceptionUi(DbException exception) {
// TODO handle this error // TODO handle this error
finish();
} }
}); });
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment