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

Allow sharing link to chats.

This commit is contained in:
John Preston
2021-01-15 20:55:22 +04:00
parent 7132ab5bf4
commit 542abb26b9
4 changed files with 85 additions and 19 deletions

View File

@@ -116,8 +116,9 @@ struct HistoryUpdate {
OutboxRead = (1 << 10),
BotKeyboard = (1 << 11),
CloudDraft = (1 << 12),
LocalDraftSet = (1 << 13),
LastUsedBit = (1 << 12),
LastUsedBit = (1 << 13),
};
using Flags = base::flags<Flag>;
friend inline constexpr auto is_flag_type(Flag) { return true; }