diff --git a/src/classes/wish.php b/src/classes/wish.php index 06a32c30..cc92a554 100644 --- a/src/classes/wish.php +++ b/src/classes/wish.php @@ -109,8 +109,8 @@ class Wish } } - $this->title = Sanitiser::render($this->title); - $this->description = Sanitiser::render($this->description); + $this->title = Sanitiser::render($this->title ?? ''); + $this->description = Sanitiser::render($this->description ?? ''); } }