Better logging of failed to parse sticker set in the database.

GitOrigin-RevId: 5fdf590fbfccb456f8dc2612470970031f81a199
This commit is contained in:
levlam 2018-12-28 20:15:52 +03:00
parent ded974762a
commit e371abc0a7
1 changed files with 6 additions and 1 deletions

View File

@ -2564,7 +2564,12 @@ void StickersManager::on_load_sticker_set_from_database(int64 sticker_set_id, bo
LOG_IF(ERROR, sticker_set->is_changed)
<< "Sticker set with" << (with_stickers ? "" : "out") << " stickers " << sticker_set_id << " is changed";
parser.fetch_end();
parser.get_status().ensure();
auto status = parser.get_status();
if (status.is_error()) {
LOG(FATAL) << "Failed to parse sticker set " << sticker_set_id << ": " << status << ' '
<< format::as_hex_dump<4>(Slice(value));
}
status.ensure();
}
if (with_stickers && old_sticker_count < 5 && old_sticker_count < sticker_set->sticker_ids.size()) {