From 56e4d740e824ee68277a0712a06bc14df3d013c1 Mon Sep 17 00:00:00 2001 From: levlam Date: Fri, 29 Nov 2019 19:16:40 +0300 Subject: [PATCH] Fix misprint. GitOrigin-RevId: 829f4ff9e24b7c91f3c9e9cbae4c64552c0d8a8d --- td/mtproto/AuthData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/td/mtproto/AuthData.cpp b/td/mtproto/AuthData.cpp index f1aebfa7..e1c2c85f 100644 --- a/td/mtproto/AuthData.cpp +++ b/td/mtproto/AuthData.cpp @@ -29,7 +29,7 @@ Status MessageIdDuplicateChecker::check(int64 message_id) { } } if (saved_message_ids_.count(message_id) != 0) { - return Status::Error(1, PSLICE() << "Ignore duplicated_message id " << tag("message_id", message_id)); + return Status::Error(1, PSLICE() << "Ignore duplicated message_id " << tag("message_id", message_id)); } saved_message_ids_.insert(message_id);