| 140 | } |
| 141 | |
| 142 | auto Premium::helloStickers() const |
| 143 | -> const std::vector<not_null<DocumentData*>> & { |
| 144 | if (_helloStickers.empty()) { |
| 145 | const_cast<Premium*>(this)->reloadHelloStickers(); |
| 146 | } |
| 147 | return _helloStickers; |
| 148 | } |
| 149 | |
| 150 | rpl::producer<> Premium::helloStickersUpdated() const { |
| 151 | return _helloStickersUpdated.events(); |
no test coverage detected