Take album caption from any album item.

This commit is contained in:
John Preston 2019-03-22 14:22:32 +04:00
parent ca9db9fd3f
commit db121c0839
1 changed files with 12 additions and 10 deletions

View File

@ -390,19 +390,21 @@ HistoryMessageEdited *HistoryGroupedMedia::displayedEditBadge() const {
} }
void HistoryGroupedMedia::updateNeedBubbleState() { void HistoryGroupedMedia::updateNeedBubbleState() {
const auto hasCaption = [&] { const auto captionItem = [&]() -> HistoryItem* {
if (_parts.front().item->emptyText()) { auto result = (HistoryItem*)nullptr;
return false; for (const auto &part : _parts) {
} if (!part.item->emptyText()) {
for (auto i = 1, count = int(_parts.size()); i != count; ++i) { if (result) {
if (!_parts[i].item->emptyText()) { return nullptr;
return false; } else {
result = part.item;
}
} }
} }
return true; return result;
}(); }();
if (hasCaption) { if (captionItem) {
_caption = createCaption(_parts.front().item); _caption = createCaption(captionItem);
} }
_needBubble = computeNeedBubble(); _needBubble = computeNeedBubble();
} }