2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-30 22:16:14 +00:00

Fix "Topic Author" badge for the new topics.

This commit is contained in:
John Preston
2022-11-03 14:13:36 +04:00
parent da941e4837
commit 1953cc2f8a
8 changed files with 56 additions and 6 deletions

View File

@@ -152,8 +152,9 @@ struct TopicUpdate {
ColorId = (1U << 7),
CloudDraft = (1U << 8),
Closed = (1U << 9),
Creator = (1U << 10),
LastUsedBit = (1U << 9),
LastUsedBit = (1U << 10),
};
using Flags = base::flags<Flag>;
friend inline constexpr auto is_flag_type(Flag) { return true; }