Fix misprint.

GitOrigin-RevId: d0af7ebd5e03471dd33b1baf3506b6c72d2518fc
This commit is contained in:
levlam 2019-09-04 21:30:27 +03:00
parent 331a48a898
commit e7aac1c9b3
2 changed files with 5 additions and 4 deletions

View File

@ -1082,7 +1082,7 @@ void SecretChatActor::do_outbound_message_impl(unique_ptr<logevent::OutboundSecr
send_closure(actor_id, &SecretChatActor::on_outbound_send_message_start, state_id);
} else {
send_closure(actor_id, &SecretChatActor::on_promise_error, result.move_as_error(),
"on_oubound_send_message_start");
"on_outbound_send_message_start");
}
});
@ -1329,7 +1329,8 @@ Status SecretChatActor::do_inbound_message_decrypted(unique_ptr<logevent::Inboun
context_->on_flush_history(MessageId(ServerMessageId(message->message_id)), std::move(save_message_finish));
break;
case secret_api::decryptedMessageActionReadMessages::ID: {
const auto &random_ids = static_cast<const secret_api::decryptedMessageActionReadMessages &>(*action).random_ids_;
const auto &random_ids =
static_cast<const secret_api::decryptedMessageActionReadMessages &>(*action).random_ids_;
if (random_ids.size() == 1) {
context_->on_read_message(random_ids[0], std::move(save_message_finish));
} else { // probably never happens
@ -1525,7 +1526,7 @@ void SecretChatActor::outbound_resend(uint64 state_id) {
state->message->is_sent = false;
state->net_query_id = 0;
state->net_query_ref = NetQueryRef();
LOG(INFO) << "Oubound message [resend] " << tag("logevent_id", state->message->logevent_id())
LOG(INFO) << "Outbound message [resend] " << tag("logevent_id", state->message->logevent_id())
<< tag("state_id", state_id);
binlog_rewrite(context_->binlog(), state->message->logevent_id(), LogEvent::HandlerType::SecretChats,

View File

@ -357,7 +357,7 @@ void SecretChatsManager::replay_create_chat(unique_ptr<logevent::CreateSecretCha
}
void SecretChatsManager::replay_outbound_message(unique_ptr<logevent::OutboundSecretMessage> message) {
LOG(INFO) << "Replay oubound secret message in chat " << message->chat_id;
LOG(INFO) << "Replay outbound secret message in chat " << message->chat_id;
auto actor = get_chat_actor(message->chat_id);
send_closure_later(actor, &SecretChatActor::replay_outbound_message, std::move(message));