| 323 | namespace Data { |
| 324 | |
| 325 | void ApplyChatUpdate( |
| 326 | not_null<ChatData*> chat, |
| 327 | const MTPDupdateChatParticipants &update) { |
| 328 | ApplyChatUpdate(chat, update.vparticipants()); |
| 329 | } |
| 330 | |
| 331 | void ApplyChatUpdate( |
| 332 | not_null<ChatData*> chat, |
no test coverage detected