From b5098038d051fdca39a51a3609d68c54cfdd3c77 Mon Sep 17 00:00:00 2001 From: John Preston Date: Thu, 5 Sep 2024 17:05:09 +0400 Subject: [PATCH] Add two-year ttl time for account. --- Telegram/SourceFiles/boxes/self_destruction_box.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/boxes/self_destruction_box.cpp b/Telegram/SourceFiles/boxes/self_destruction_box.cpp index 691a114ba..210735063 100644 --- a/Telegram/SourceFiles/boxes/self_destruction_box.cpp +++ b/Telegram/SourceFiles/boxes/self_destruction_box.cpp @@ -23,7 +23,7 @@ using Type = SelfDestructionBox::Type; [[nodiscard]] std::vector Values(Type type) { switch (type) { - case Type::Account: return { 30, 90, 180, 365, 548 }; + case Type::Account: return { 30, 90, 180, 365, 548, 720 }; case Type::Sessions: return { 7, 30, 90, 180, 365 }; } Unexpected("SelfDestructionBox::Type in Values.");