summaryrefslogtreecommitdiffstats
path: root/Telegram/SourceFiles/payments/payments_form.cpp
diff options
context:
space:
mode:
authorJohn Preston <johnprestonmail@gmail.com>2022-07-24 16:27:20 +0300
committerJohn Preston <johnprestonmail@gmail.com>2022-07-26 20:12:13 +0300
commit076d5c756af4d82dc648cc28405ce1d8ed6e76b4 (patch)
treeb5da2583b5dbc3d23c0c9768d8bc3cafb40e3df3 /Telegram/SourceFiles/payments/payments_form.cpp
parentb829ed3530120fa37e5f87191ff981685aae5050 (diff)
Fix build with Xcode and GCC.
Diffstat (limited to 'Telegram/SourceFiles/payments/payments_form.cpp')
-rw-r--r--Telegram/SourceFiles/payments/payments_form.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Telegram/SourceFiles/payments/payments_form.cpp b/Telegram/SourceFiles/payments/payments_form.cpp
index dd326f7fa8..61f350f081 100644
--- a/Telegram/SourceFiles/payments/payments_form.cpp
+++ b/Telegram/SourceFiles/payments/payments_form.cpp
@@ -440,7 +440,7 @@ void Form::processDetails(const MTPDpayments_paymentReceipt &data) {
&& !_thumbnailLoadProcess) {
_invoice.cover = Ui::Cover{
.title = qs(data.vtitle()),
- .description = qs(data.vdescription()),
+ .description = { qs(data.vdescription()) },
};
if (const auto web = data.vphoto()) {
if (const auto photo = _session->data().photoFromWeb(*web, {})) {