Minor improvements

This commit is contained in:
M66B
2018-08-05 16:14:43 +00:00
parent 9f626e3489
commit d6363b7f81
12 changed files with 19 additions and 25 deletions

View File

@@ -56,7 +56,7 @@ public class FragmentFolder extends FragmentEx {
// Get arguments
Bundle args = getArguments();
final long id = args.getLong("id");
final long id = (args == null ? -1 : args.getLong("id"));
// Get controls
cbSynchronize = view.findViewById(R.id.cbSynchronize);