summaryrefslogtreecommitdiff
path: root/src/HTMLParser.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/HTMLParser.php')
-rw-r--r--src/HTMLParser.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/HTMLParser.php b/src/HTMLParser.php
index 7ebf97d..6705acd 100644
--- a/src/HTMLParser.php
+++ b/src/HTMLParser.php
@@ -138,9 +138,9 @@ class HTMLParser
// Todo, fix return, check for values, maybe create a function to create the return object
return [
- 'title' => $this->metadata['title'],
- 'author' => $this->metadata['author'],
- 'image' => $this->metadata['image'],
+ 'title' => isset($this->metadata['title']) ? $this->metadata['title'] : null,
+ 'author' => isset($this->metadata['author']) ? $this->metadata['author'] : null,
+ 'image' => isset($this->metadata['image']) ?$this->metadata['image'] : null,
'article' => $result,
'html' => $result->C14N()
];