| 547 | } |
| 548 | |
| 549 | void PeerListStories::updateFor(uint64 id, Counts counts) { |
| 550 | if (const auto row = _delegate->peerListFindRow(id)) { |
| 551 | applyForRow(row, counts); |
| 552 | _delegate->peerListUpdateRow(row); |
| 553 | } |
| 554 | } |
| 555 | |
| 556 | void PeerListStories::process(not_null<PeerListRow*> row) { |
| 557 | const auto user = row->peer()->asUser(); |
nothing calls this directly
no test coverage detected