mirror of https://github.com/procxx/kepka.git
Fixed crash in rescheduling of scheduled until online messages.
Fixed #8016.
This commit is contained in:
parent
ccce5f081d
commit
cf40f92cd5
|
@ -430,12 +430,17 @@ bool AddRescheduleMessageAction(
|
||||||
? SendMenuType::ScheduledToUser
|
? SendMenuType::ScheduledToUser
|
||||||
: SendMenuType::Scheduled;
|
: SendMenuType::Scheduled;
|
||||||
|
|
||||||
|
using S = Data::ScheduledMessages;
|
||||||
|
const auto date = (item->date() == S::kScheduledUntilOnlineTimestamp)
|
||||||
|
? HistoryView::DefaultScheduleTime()
|
||||||
|
: item->date() + 600;
|
||||||
|
|
||||||
Ui::show(
|
Ui::show(
|
||||||
HistoryView::PrepareScheduleBox(
|
HistoryView::PrepareScheduleBox(
|
||||||
&request.navigation->session(),
|
&request.navigation->session(),
|
||||||
sendMenuType,
|
sendMenuType,
|
||||||
callback,
|
callback,
|
||||||
item->date() + 600),
|
date),
|
||||||
Ui::LayerOption::KeepOther);
|
Ui::LayerOption::KeepOther);
|
||||||
});
|
});
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue