| 241 | } |
| 242 | |
| 243 | void Changes::messageUpdated( |
| 244 | not_null<HistoryItem*> item, |
| 245 | MessageUpdate::Flags flags) { |
| 246 | const auto drop = (flags & MessageUpdate::Flag::Destroyed); |
| 247 | _messageChanges.updated(item, flags, drop); |
| 248 | if (!drop) { |
| 249 | scheduleNotifications(); |
| 250 | } |
| 251 | } |
| 252 | |
| 253 | rpl::producer<MessageUpdate> Changes::messageUpdates( |
| 254 | MessageUpdate::Flags flags) const { |
no test coverage detected