From edf0aaaa2a924457e81f1fbebdbcce6f2027adb1 Mon Sep 17 00:00:00 2001 From: levlam Date: Sun, 14 May 2023 01:41:23 +0300 Subject: [PATCH] Fix misprint in error message. --- td/mtproto/SessionConnection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/td/mtproto/SessionConnection.cpp b/td/mtproto/SessionConnection.cpp index dad902222..abfc230e6 100644 --- a/td/mtproto/SessionConnection.cpp +++ b/td/mtproto/SessionConnection.cpp @@ -361,8 +361,8 @@ Status SessionConnection::on_packet(const MsgInfo &info, return Status::Error("SeqNo is not even for an irrelevant message"); } case SeqNoNotOdd: { - LOG(ERROR) << bad_info << ": SeqNo is not odd for an irrelevant message" << common; - return Status::Error("SeqNo is not odd for an irrelevant message"); + LOG(ERROR) << bad_info << ": SeqNo is not odd for a relevant message" << common; + return Status::Error("SeqNo is not odd for a relevant message"); } case InvalidContainer: {