| 149 | } |
| 150 | |
| 151 | void RepliesList::applyTopicCreator(PeerId creatorId) { |
| 152 | const auto owner = &_history->owner(); |
| 153 | const auto peerId = _history->peer->id; |
| 154 | for (const auto &id : _list) { |
| 155 | if (const auto item = owner->message(peerId, id)) { |
| 156 | if (item->from()->id == creatorId) { |
| 157 | owner->requestItemResize(item); |
| 158 | } |
| 159 | } |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | rpl::producer<MessagesSlice> RepliesList::source( |
| 164 | MessagePosition aroundId, |
nothing calls this directly
no test coverage detected