Only display redundant preview data with preview picture

Este commit está contenido en:
Michael 2020-09-19 19:02:40 +00:00
padre 6e8f27b421
commit 1a0db28d2e
Se han modificado 1 ficheros con 8 adiciones y 8 borrados

Ver fichero

@ -134,14 +134,6 @@ class PageInfo
$text = "[attachment type='" . $data['type'] . "'";
if (empty($data['text'])) {
$data['text'] = $data['title'];
}
if (empty($data['text'])) {
$data['text'] = $data['url'];
}
if (!empty($data['url'])) {
$text .= " url='" . $data['url'] . "'";
}
@ -160,6 +152,14 @@ class PageInfo
$text .= " image='" . $preview . "'";
} else {
$text .= " preview='" . $preview . "'";
if (empty($data['text'])) {
$data['text'] = $data['title'];
}
if (empty($data['text'])) {
$data['text'] = $data['url'];
}
}
}