mirror of
https://github.com/friendica/friendica
synced 2024-11-10 07:02:54 +00:00
The function "get_attached_data" hasn't always detected photos
This commit is contained in:
parent
6541247bd3
commit
4e6e09a44f
1 changed files with 1 additions and 3 deletions
|
@ -53,7 +53,6 @@ function get_attached_data($body) {
|
|||
if (count($pictures) == 1) {
|
||||
// Checking, if the link goes to a picture
|
||||
$data = parseurl_getsiteinfo($pictures[0][1], true);
|
||||
|
||||
if ($data["type"] == "photo") {
|
||||
$post["type"] = "photo";
|
||||
if (isset($data["images"][0]))
|
||||
|
@ -64,8 +63,7 @@ function get_attached_data($body) {
|
|||
$post["preview"] = $pictures[0][2];
|
||||
$post["text"] = str_replace($pictures[0][0], "", $body);
|
||||
} else {
|
||||
$img_str = fetch_url($pictures[0][1]);
|
||||
$imgdata = get_photo_info($img_str);
|
||||
$imgdata = get_photo_info($pictures[0][1]);
|
||||
if (substr($imgdata["mime"], 0, 6) == "image/") {
|
||||
$post["type"] = "photo";
|
||||
$post["image"] = $pictures[0][1];
|
||||
|
|
Loading…
Reference in a new issue