Silence unneeded notification log event errors.

GitOrigin-RevId: 5f2d00d2575162944f80f2691d5b896950e93d35
This commit is contained in:
levlam 2019-04-11 17:13:42 +03:00
parent 589edf60b1
commit 6376ed09d0
2 changed files with 3 additions and 3 deletions

View File

@ -318,7 +318,7 @@ tl_object_ptr<telegram_api::InputMedia> AnimationsManager::get_input_media(
attributes.push_back(make_tl_object<telegram_api::documentAttributeFilename>(animation->file_name));
}
string mime_type = animation->mime_type;
if (animation->mime_type == "video/mp4") {
if (mime_type == "video/mp4") {
attributes.push_back(make_tl_object<telegram_api::documentAttributeVideo>(
0, false /*ignored*/, false /*ignored*/, animation->duration, animation->dimensions.width,
animation->dimensions.height));

View File

@ -3970,7 +3970,7 @@ void NotificationManager::on_binlog_events(vector<BinlogEvent> &&events) {
log_event.sender_name_, log_event.date_, log_event.contains_mention_, true, log_event.loc_key_,
log_event.arg_, log_event.photo_, log_event.document_, log_event.notification_id_, event.id_,
PromiseCreator::lambda([](Result<Unit> result) {
if (result.is_error()) {
if (result.is_error() && result.error().code() != 200 && result.error().code() != 406) {
LOG(ERROR) << "Receive error " << result.error() << ", while processing message push notification";
}
}));
@ -3984,7 +3984,7 @@ void NotificationManager::on_binlog_events(vector<BinlogEvent> &&events) {
edit_message_push_notification(
log_event.dialog_id_, log_event.message_id_, log_event.edit_date_, log_event.loc_key_, log_event.arg_,
log_event.photo_, log_event.document_, event.id_, PromiseCreator::lambda([](Result<Unit> result) {
if (result.is_error()) {
if (result.is_error() && result.error().code() != 200 && result.error().code() != 406) {
LOG(ERROR) << "Receive error " << result.error() << ", while processing edit message push notification";
}
}));