kopia lustrzana https://github.com/friendica/friendica
Return 'null' on empty card
rodzic
efcd76d3a7
commit
13b14bff91
|
@ -59,4 +59,18 @@ class Card extends BaseEntity
|
|||
$this->type = $attachment['type'] ?? '';
|
||||
$this->image = $attachment['image'] ?? '';
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the current entity as an array
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function toArray()
|
||||
{
|
||||
if (empty($this->url)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return parent::toArray();
|
||||
}
|
||||
}
|
||||
|
|
Ładowanie…
Reference in New Issue