| 119 | } |
| 120 | |
| 121 | PeerData *Key::storiesPeer() const { |
| 122 | if (const auto tag = std::get_if<Stories::Tag>(&_value)) { |
| 123 | return tag->peer; |
| 124 | } |
| 125 | return nullptr; |
| 126 | } |
| 127 | |
| 128 | int Key::storiesAlbumId() const { |
| 129 | if (const auto tag = std::get_if<Stories::Tag>(&_value)) { |
no outgoing calls
no test coverage detected