Bug fixes

This commit is contained in:
Deon George
2020-01-06 20:01:04 +11:00
parent 948e8ce9fc
commit 7bd4bad941
8 changed files with 26 additions and 19 deletions

View File

@@ -126,7 +126,7 @@ class Video extends Abstracted\Catalog
public function setDateCreated()
{
$this->created = strtotime($this->property('creationdate'));
$this->created = $this->property('creationdate') ? strtotime($this->property('creationdate')) : NULL;
}
public function setLocation()