diff --git a/Telegram/SourceFiles/ui/filter_icons.cpp b/Telegram/SourceFiles/ui/filter_icons.cpp index d575e6fa7..7ac99bc9a 100644 --- a/Telegram/SourceFiles/ui/filter_icons.cpp +++ b/Telegram/SourceFiles/ui/filter_icons.cpp @@ -135,8 +135,7 @@ const auto kIcons = std::vector{ } // namespace const FilterIcons &LookupFilterIcon(FilterIcon icon) { - Expects(static_cast(icon) >= 0 - && static_cast(icon) < kIcons.size()); + Expects(static_cast(icon) < kIcons.size()); return kIcons[static_cast(icon)]; } diff --git a/changelog.txt b/changelog.txt index 248375afd..258870949 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,4 @@ -1.9.22 (27.03.20) +1.9.22 beta (27.03.20) - Organize chats into Chat Folders if you have too many chats.