Skip to content

Commit

Permalink
fix semicolon typo
Browse files Browse the repository at this point in the history
  • Loading branch information
levnikmyskin committed Jan 3, 2021
1 parent 8d97447 commit c3c7045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Telegram/SourceFiles/core/core_settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c3c7045

Please sign in to comment.