Fix build with Xcode.

This commit is contained in:
John Preston 2023-08-10 22:27:11 +02:00
parent 88c7b16b44
commit ae26c781c1

View File

@ -138,7 +138,7 @@ struct Feature {
return { return {
.icon = st::storiesStealthFeaturePastIcon, .icon = st::storiesStealthFeaturePastIcon,
.title = tr::lng_stealth_mode_past_title(tr::now), .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 { return {
.icon = st::storiesStealthFeatureNextIcon, .icon = st::storiesStealthFeatureNextIcon,
.title = tr::lng_stealth_mode_next_title(tr::now), .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) },
}; };
} }