| 273 | } |
| 274 | |
| 275 | void Changes::entryUpdated( |
| 276 | not_null<Dialogs::Entry*> entry, |
| 277 | EntryUpdate::Flags flags) { |
| 278 | const auto drop = (flags & EntryUpdate::Flag::Destroyed); |
| 279 | _entryChanges.updated(entry, flags, drop); |
| 280 | if (!drop) { |
| 281 | scheduleNotifications(); |
| 282 | } |
| 283 | } |
| 284 | |
| 285 | rpl::producer<EntryUpdate> Changes::entryUpdates( |
| 286 | EntryUpdate::Flags flags) const { |
no test coverage detected