Rename thumbnail.thumbnail to thumbnail.file.
GitOrigin-RevId: e50ff07938086c7c4de7953e57206ebfb96b50e4
This commit is contained in:
parent
6599d76837
commit
e665edc4fc
@ -206,8 +206,8 @@ thumbnailFormatTgs = ThumbnailFormat;
|
||||
thumbnailFormatMpeg4 = ThumbnailFormat;
|
||||
|
||||
|
||||
//@description Represents a thumbnail @format Thumbnail format @width Thumbnail width @height Thumbnail height @thumbnail The thumbnail
|
||||
thumbnail format:ThumbnailFormat width:int32 height:int32 thumbnail:file = Thumbnail;
|
||||
//@description Represents a thumbnail @format Thumbnail format @width Thumbnail width @height Thumbnail height @file The thumbnail
|
||||
thumbnail format:ThumbnailFormat width:int32 height:int32 file:file = Thumbnail;
|
||||
|
||||
|
||||
//@class MaskPoint @description Part of the face, relative to which a mask should be placed
|
||||
|
Binary file not shown.
@ -885,7 +885,7 @@ tl_object_ptr<td_api::thumbnail> copy(const td_api::thumbnail &obj) {
|
||||
}
|
||||
}();
|
||||
|
||||
return make_tl_object<td_api::thumbnail>(std::move(format), obj.width_, obj.height_, copy(obj.thumbnail_));
|
||||
return make_tl_object<td_api::thumbnail>(std::move(format), obj.width_, obj.height_, copy(obj.file_));
|
||||
}
|
||||
|
||||
static tl_object_ptr<td_api::photoSize> copy_photo_size(const tl_object_ptr<td_api::photoSize> &obj) {
|
||||
|
Loading…
Reference in New Issue
Block a user