mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-23 04:41:16 +00:00
Do not request data when finishing
This commit is contained in:
parent
87f3ea9687
commit
ad65198f70
3 changed files with 6 additions and 6 deletions
|
@ -65,7 +65,7 @@ public class DevicesFragment extends ListFragment implements SyncthingService.On
|
|||
}
|
||||
|
||||
private void updateList() {
|
||||
if (mAdapter == null || getView() == null)
|
||||
if (mAdapter == null || getView() == null || getActivity().isFinishing())
|
||||
return;
|
||||
|
||||
MainActivity activity = (MainActivity) getActivity();
|
||||
|
|
|
@ -165,10 +165,10 @@ public class DrawerFragment extends Fragment implements RestApi.OnReceiveSystemI
|
|||
* Invokes status callbacks.
|
||||
*/
|
||||
private void updateGui() {
|
||||
if (mActivity.getApi() != null) {
|
||||
mActivity.getApi().getSystemInfo(this);
|
||||
mActivity.getApi().getConnections(this);
|
||||
}
|
||||
if (mActivity.getApi() == null || getActivity().isFinishing())
|
||||
return;
|
||||
mActivity.getApi().getSystemInfo(this);
|
||||
mActivity.getApi().getConnections(this);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -65,7 +65,7 @@ public class FoldersFragment extends ListFragment implements SyncthingService.On
|
|||
}
|
||||
|
||||
private void updateList() {
|
||||
if (mAdapter == null || getView() == null)
|
||||
if (mAdapter == null || getView() == null || getActivity().isFinishing())
|
||||
return;
|
||||
|
||||
MainActivity activity = (MainActivity) getActivity();
|
||||
|
|
Loading…
Reference in a new issue