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

@@ -86,7 +86,7 @@ public class FragmentAccount extends FragmentEx {
// Get arguments
Bundle args = getArguments();
final long id = args.getLong("id", -1);
final long id = (args == null ? -1 : args.getLong("id", -1));
// Get providers
providers = Provider.loadProfiles(getContext());