diff options
author | Mario <mario@mariovavti.com> | 2022-03-02 19:52:47 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-03-02 19:52:47 +0000 |
commit | 34f64148e8c936ac1189be937329ebe708e942b6 (patch) | |
tree | de66f3430a3c7a4d80f1450c715f0a9f3355a8dd /vendor/league/html-to-markdown/src/Element.php | |
parent | fc5dad198333cbed7a13d97f44d937554356f1a6 (diff) | |
download | volse-hubzilla-34f64148e8c936ac1189be937329ebe708e942b6.tar.gz volse-hubzilla-34f64148e8c936ac1189be937329ebe708e942b6.tar.bz2 volse-hubzilla-34f64148e8c936ac1189be937329ebe708e942b6.zip |
composer updates
Diffstat (limited to 'vendor/league/html-to-markdown/src/Element.php')
-rw-r--r-- | vendor/league/html-to-markdown/src/Element.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/league/html-to-markdown/src/Element.php b/vendor/league/html-to-markdown/src/Element.php index 5407f1ffb..0515b5995 100644 --- a/vendor/league/html-to-markdown/src/Element.php +++ b/vendor/league/html-to-markdown/src/Element.php @@ -63,7 +63,7 @@ class Element implements ElementInterface public function getValue(): string { - return $this->node->nodeValue; + return $this->node->nodeValue ?? ''; } public function hasParent(): bool |