1
0
Fork 0
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:
Felix Ableitner 2015-03-21 21:48:24 +01:00
parent 2bac0d9504
commit 1703194b02

View file

@ -97,9 +97,11 @@ public class DrawerFragment extends Fragment implements RestApi.OnReceiveSystemI
}
public void onDrawerClosed() {
if (mTimer != null) {
mTimer.cancel();
mTimer = null;
}
}
@Override
public void onDestroy() {