API - /media/upload - add return value #6272

image.preview: string (url for small image)
This commit is contained in:
root 2018-12-15 20:15:55 +00:00 committed by Hypolite Petovan
parent 8addcf9844
commit d331e4e6e3
1 changed files with 3 additions and 2 deletions

View File

@ -1242,8 +1242,9 @@ function api_media_upload()
$returndata["media_id_string"] = (string)$media["id"];
$returndata["size"] = $media["size"];
$returndata["image"] = ["w" => $media["width"],
"h" => $media["height"],
"image_type" => $media["type"]];
"h" => $media["height"],
"image_type" => $media["type"],
"preview" => $media["preview"]];
Logger::log("Media uploaded: " . print_r($returndata, true), Logger::DEBUG);