diff --git a/td/telegram/InlineQueriesManager.cpp b/td/telegram/InlineQueriesManager.cpp index 801b42671..ec487cc5b 100644 --- a/td/telegram/InlineQueriesManager.cpp +++ b/td/telegram/InlineQueriesManager.cpp @@ -1275,9 +1275,9 @@ tl_object_ptr copy(const td_api::photo &obj) { template <> tl_object_ptr copy(const td_api::sticker &obj) { - return td_api::make_object(obj.id_, obj.set_id_, obj.width_, obj.height_, obj.emoji_, copy(obj.format_), - copy(obj.full_type_), transform(obj.outline_, copy_closed_vector_path), - copy(obj.thumbnail_), copy(obj.sticker_)); + return td_api::make_object( + obj.id_, obj.set_id_, obj.width_, obj.height_, obj.emoji_, copy(obj.format_), copy(obj.full_type_), + transform(obj.outline_, copy_closed_vector_path), copy(obj.thumbnail_), copy(obj.sticker_)); } template <>