mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-23 12:51:16 +00:00
Check if timer is null.
This commit is contained in:
parent
2bac0d9504
commit
1703194b02
1 changed files with 4 additions and 2 deletions
|
@ -97,8 +97,10 @@ public class DrawerFragment extends Fragment implements RestApi.OnReceiveSystemI
|
|||
}
|
||||
|
||||
public void onDrawerClosed() {
|
||||
mTimer.cancel();
|
||||
mTimer = null;
|
||||
if (mTimer != null) {
|
||||
mTimer.cancel();
|
||||
mTimer = null;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue