Version 1.4.9: Fix macOS build
This commit is contained in:
parent
b812ac0eaa
commit
30c2d45591
1 changed files with 6 additions and 2 deletions
|
|
@ -625,9 +625,13 @@ void HistoryService::setMessageByAction(const MTPmessageAction &action) {
|
|||
}, [&](const MTPDmessageActionChatCreate &data) {
|
||||
return prepareChatCreate(data);
|
||||
}, [](const MTPDmessageActionChatMigrateTo &) {
|
||||
return PreparedText{ tr::lng_action_group_migrate(tr::now) };
|
||||
return PreparedText{
|
||||
tr::lng_action_group_migrate(tr::now, Ui::Text::WithEntities)
|
||||
};
|
||||
}, [](const MTPDmessageActionChannelMigrateFrom &) {
|
||||
return PreparedText{ tr::lng_action_group_migrate(tr::now) };
|
||||
return PreparedText{
|
||||
tr::lng_action_group_migrate(tr::now, Ui::Text::WithEntities)
|
||||
};
|
||||
}, [](const MTPDmessageActionHistoryClear &) {
|
||||
return PreparedText();
|
||||
}, [&](const MTPDmessageActionChannelCreate &data) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue