mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-23 04:41:16 +00:00
Fixed possible crash on shutdown.
This commit is contained in:
parent
5a0870d21a
commit
74c148b790
1 changed files with 5 additions and 3 deletions
|
@ -256,10 +256,12 @@ public class MainActivity extends SyncthingActivity
|
|||
if (mLoadingDialog != null) {
|
||||
mLoadingDialog.dismiss();
|
||||
}
|
||||
if (getService() != null) {
|
||||
getService().unregisterOnApiChangeListener(this);
|
||||
getService().unregisterOnApiChangeListener(mFolderFragment);
|
||||
getService().unregisterOnApiChangeListener(mDevicesFragment);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
|
||||
|
|
Loading…
Reference in a new issue