From ae26c781c11b8155cba8f3601668fc6fd3364dbe Mon Sep 17 00:00:00 2001 From: John Preston Date: Thu, 10 Aug 2023 22:27:11 +0200 Subject: [PATCH] Fix build with Xcode. --- Telegram/SourceFiles/media/stories/media_stories_stealth.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/media/stories/media_stories_stealth.cpp b/Telegram/SourceFiles/media/stories/media_stories_stealth.cpp index 04a78c7f2..404ff1aea 100644 --- a/Telegram/SourceFiles/media/stories/media_stories_stealth.cpp +++ b/Telegram/SourceFiles/media/stories/media_stories_stealth.cpp @@ -138,7 +138,7 @@ struct Feature { return { .icon = st::storiesStealthFeaturePastIcon, .title = tr::lng_stealth_mode_past_title(tr::now), - .about = tr::lng_stealth_mode_past_about(tr::now), + .about = { tr::lng_stealth_mode_past_about(tr::now) }, }; } @@ -146,7 +146,7 @@ struct Feature { return { .icon = st::storiesStealthFeatureNextIcon, .title = tr::lng_stealth_mode_next_title(tr::now), - .about = tr::lng_stealth_mode_next_about(tr::now), + .about = { tr::lng_stealth_mode_next_about(tr::now) }, }; }