1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-26 14:21:16 +00:00
This commit is contained in:
Unrud 2016-11-06 06:03:55 +01:00
parent 57a8d270e1
commit 3c78c67817
3 changed files with 7 additions and 3 deletions

View file

@ -38,7 +38,9 @@ public class DeviceListFragment extends ListFragment implements SyncthingService
@Override
public void onPause() {
super.onPause();
mTimer.cancel();
if (mTimer != null) {
mTimer.cancel();
}
}
@Override

View file

@ -138,7 +138,7 @@ public class FolderFragment extends Fragment
@Override
public void onClick(View v) {
Intent intent = new Intent(getActivity(), FolderPickerActivity.class);
if (mFolder.path.length() > 0) {
if (!TextUtils.isEmpty(mFolder.path)) {
intent.putExtra(FolderPickerActivity.EXTRA_INITIAL_DIRECTORY, mFolder.path);
}
startActivityForResult(intent, DIRECTORY_REQUEST_CODE);

View file

@ -46,7 +46,9 @@ public class FolderListFragment extends ListFragment implements SyncthingService
@Override
public void onPause() {
super.onPause();
mTimer.cancel();
if (mTimer != null) {
mTimer.cancel();
}
}
@Override