From ac9ee00a6b20f4fffeb88d283df19b7bb8fd3620 Mon Sep 17 00:00:00 2001 From: levlam Date: Tue, 6 Dec 2022 15:00:27 +0300 Subject: [PATCH] Fix forum topic initial notification settings. --- td/telegram/ForumTopic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/td/telegram/ForumTopic.cpp b/td/telegram/ForumTopic.cpp index df0c0878f..af1588af5 100644 --- a/td/telegram/ForumTopic.cpp +++ b/td/telegram/ForumTopic.cpp @@ -27,7 +27,7 @@ ForumTopic::ForumTopic(Td *td, tl_object_ptr &&forum_t is_short_ = forum_topic->short_; is_pinned_ = forum_topic->pinned_; notification_settings_ = - get_dialog_notification_settings(std::move(forum_topic->notify_settings_), false, false, false, false); + get_dialog_notification_settings(std::move(forum_topic->notify_settings_), true, false, true, false); draft_message_ = get_draft_message(td->contacts_manager_.get(), std::move(forum_topic->draft_)); if (is_short_) {