Fix previous commit.

GitOrigin-RevId: 3102c40ce2768544d73fe7c1a6b1308259a0837c
This commit is contained in:
levlam 2019-09-27 04:57:42 +03:00
parent 33d684d684
commit aa8e1a3ec5
1 changed files with 3 additions and 2 deletions

View File

@ -236,8 +236,9 @@ class WebPageBlockTableCell {
UNREACHABLE();
return nullptr;
}();
return td_api::make_object<td_api::pageBlockTableCell>(text.empty() ? null : text.get_rich_text_object(), is_header,
colspan, rowspan, std::move(align), std::move(valign));
return td_api::make_object<td_api::pageBlockTableCell>(text.empty() ? nullptr : text.get_rich_text_object(),
is_header, colspan, rowspan, std::move(align),
std::move(valign));
}
template <class StorerT>