Task names

This commit is contained in:
M66B
2019-01-12 13:15:15 +00:00
parent 9b865d9068
commit 2ff5b3f773
11 changed files with 29 additions and 45 deletions

View File

@@ -303,7 +303,7 @@ public class FragmentAccount extends FragmentEx {
else
Helper.unexpectedError(getContext(), getViewLifecycleOwner(), ex);
}
}.execute(FragmentAccount.this, args);
}.execute(FragmentAccount.this, args, "account:config");
}
});
@@ -623,7 +623,7 @@ public class FragmentAccount extends FragmentEx {
});
}
}
}.execute(FragmentAccount.this, args);
}.execute(FragmentAccount.this, args, "account:check");
}
});
@@ -937,7 +937,7 @@ public class FragmentAccount extends FragmentEx {
});
}
}
}.execute(FragmentAccount.this, args);
}.execute(FragmentAccount.this, args, "account:save");
}
});
@@ -1071,7 +1071,7 @@ public class FragmentAccount extends FragmentEx {
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(getContext(), getViewLifecycleOwner(), ex);
}
}.execute(FragmentAccount.this, new Bundle());
}.execute(FragmentAccount.this, new Bundle(), "account:primary");
} else {
int provider = savedInstanceState.getInt("provider");
spProvider.setTag(provider);
@@ -1111,14 +1111,14 @@ public class FragmentAccount extends FragmentEx {
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(getContext(), getViewLifecycleOwner(), ex);
}
}.execute(FragmentAccount.this, args);
}.execute(FragmentAccount.this, args, "account:folders");
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(getContext(), getViewLifecycleOwner(), ex);
}
}.execute(this, args);
}.execute(this, args, "account:get");
}
@Override
@@ -1181,7 +1181,7 @@ public class FragmentAccount extends FragmentEx {
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(getContext(), getViewLifecycleOwner(), ex);
}
}.execute(FragmentAccount.this, args);
}.execute(FragmentAccount.this, args, "account:delete");
}
})
.setNegativeButton(android.R.string.cancel, null)