2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

Implement stealth mode in stories.

This commit is contained in:
John Preston
2023-08-01 19:09:09 +02:00
parent 5575d50277
commit c12297d8cb
38 changed files with 608 additions and 3 deletions

View File

@@ -2528,6 +2528,11 @@ void Updates::feedUpdate(const MTPUpdate &update) {
_session->data().stories().apply(update.c_updateReadStories());
} break;
case mtpc_updateStoriesStealthMode: {
const auto &data = update.c_updateStoriesStealthMode();
_session->data().stories().apply(data.vstealth_mode());
} break;
}
}