From c41297c2a2df63ea4044c33694c19175df8dafb8 Mon Sep 17 00:00:00 2001 From: Andrea Cavalli Date: Sat, 28 Dec 2019 21:59:00 +0100 Subject: [PATCH] Removed server-side bug from logs --- td/telegram/ContactsManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/td/telegram/ContactsManager.cpp b/td/telegram/ContactsManager.cpp index a99e945b..d608ac15 100644 --- a/td/telegram/ContactsManager.cpp +++ b/td/telegram/ContactsManager.cpp @@ -7055,7 +7055,7 @@ void ContactsManager::on_update_user_photo(User *u, UserId user_id, void ContactsManager::do_update_user_photo(User *u, UserId user_id, tl_object_ptr &&photo, const char *source) { u->is_photo_inited = true; - LOG_IF(ERROR, u->access_hash == -1) << "Update profile photo of " << user_id << " without access hash from " + LOG_IF(INFO, u->access_hash == -1) << "Update profile photo of " << user_id << " without access hash from " << source; ProfilePhoto new_photo = get_profile_photo(td_->file_manager_.get(), user_id, u->access_hash, std::move(photo));