From c3c70450c5b21c4a18d3c438d7f420f37e88764f Mon Sep 17 00:00:00 2001 From: alessio Date: Sun, 3 Jan 2021 14:01:47 +0100 Subject: [PATCH] fix semicolon typo --- Telegram/SourceFiles/core/core_settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/core/core_settings.cpp b/Telegram/SourceFiles/core/core_settings.cpp index aa0c158cec9b88..c79429fbfd87c2 100644 --- a/Telegram/SourceFiles/core/core_settings.cpp +++ b/Telegram/SourceFiles/core/core_settings.cpp @@ -112,7 +112,7 @@ QByteArray Settings::serialize() const { << qint32(_ipRevealWarning ? 1 : 0) << qint32(_groupCallPushToTalk ? 1 : 0) << _groupCallPushToTalkShortcut - << qint64(_groupCallPushToTalkDelay); + << qint64(_groupCallPushToTalkDelay) << qint32(_autoHideNotifications ? 1 : 0); } return result;