From a4d8b78bc50e03bbc0c7a4c1695728584ba4e2c9 Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 10 Mar 2023 12:23:32 +0400 Subject: [PATCH] Beta version 4.6.9: Fix status power saving. --- Telegram/SourceFiles/ui/power_saving.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/ui/power_saving.h b/Telegram/SourceFiles/ui/power_saving.h index 6b3e289ea..f4a2e1dea 100644 --- a/Telegram/SourceFiles/ui/power_saving.h +++ b/Telegram/SourceFiles/ui/power_saving.h @@ -21,7 +21,7 @@ enum Flag : uint32 { kCalls = (1U << 8), kEmojiStatus = (1U << 9), - kAll = (1U << 9) - 1, + kAll = (1U << 10) - 1, }; inline constexpr bool is_flag_type(Flag) { return true; } using Flags = base::flags;