1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-24 07:01:05 +00:00

Send: display waiting for suitable connection

This commit is contained in:
M66B 2022-11-14 18:14:44 +01:00
parent 7d0e1d7bb0
commit 389d032185

View file

@ -6650,9 +6650,13 @@ public class FragmentCompose extends FragmentBase {
EntityOperation.queue(context, draft, EntityOperation.SEND);
final String feedback;
if (draft.ui_snoozed == null)
feedback = context.getString(R.string.title_queued);
else {
if (draft.ui_snoozed == null) {
boolean suitable = ConnectionHelper.getNetworkState(context).isSuitable();
if (suitable)
feedback = context.getString(R.string.title_queued);
else
feedback = context.getString(R.string.title_notification_waiting);
} else {
DateFormat DTF = Helper.getDateTimeInstance(context);
feedback = context.getString(R.string.title_queued_at, DTF.format(draft.ui_snoozed));
}