2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

Fix restoring shared media state.

This commit is contained in:
John Preston
2017-11-12 18:35:20 +04:00
parent fc66550a32
commit 3a25313e61
4 changed files with 17 additions and 11 deletions

View File

@@ -773,15 +773,16 @@ SparseIdsMergedSlice::Key ListWidget::sliceKey(
void ListWidget::refreshViewer() {
_viewerLifetime.destroy();
auto idForViewer = sliceKey(_universalAroundId).universalId;
_controller->mediaSource(
sliceKey(_universalAroundId).universalId,
idForViewer,
_idsLimit,
_idsLimit)
| rpl::start_with_next([this](
| rpl::start_with_next([=](
SparseIdsMergedSlice &&slice) {
_slice = std::move(slice);
if (auto nearest = _slice.nearest(_universalAroundId)) {
_universalAroundId = *nearest;
if (auto nearest = _slice.nearest(idForViewer)) {
_universalAroundId = GetUniversalId(*nearest);
}
refreshRows();
}, _viewerLifetime);