Skip to content

Commit

Permalink
Fix build in Release.
Browse files Browse the repository at this point in the history
  • Loading branch information
john-preston committed Aug 21, 2024
1 parent c3fda41 commit 46304c7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Telegram/SourceFiles/boxes/moderate_messages_box.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,9 @@ void DeleteChatBox(not_null<Ui::GenericBox*> box, not_null<PeerData*> peer) {
? tr::lng_saved_messages() | Ui::Text::ToBold()
: maybeUser
? tr::lng_profile_delete_conversation() | Ui::Text::ToBold()
: rpl::single(peer->name()) | Ui::Text::ToBold(),
: rpl::single(
peer->name()
) | Ui::Text::ToBold() | rpl::type_erased(),
box->getDelegate()->style().title));

Ui::AddSkip(container);
Expand Down

0 comments on commit 46304c7

Please sign in to comment.