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

Poll views for my story that is viewed.

This commit is contained in:
John Preston
2023-07-05 21:02:57 +04:00
parent 5ccb97668c
commit 6a11888852
6 changed files with 161 additions and 72 deletions

View File

@@ -223,8 +223,9 @@ struct StoryUpdate {
Edited = (1U << 0),
Destroyed = (1U << 1),
NewAdded = (1U << 2),
ViewsAdded = (1U << 3),
LastUsedBit = (1U << 2),
LastUsedBit = (1U << 3),
};
using Flags = base::flags<Flag>;
friend inline constexpr auto is_flag_type(Flag) { return true; }