Fix uncaught TypeError

This commit is contained in:
grandeljay 2022-08-11 14:59:29 +02:00
parent 1b8798cc82
commit f12c4f6b8c

View file

@ -109,8 +109,8 @@ class Wish
} }
} }
$this->title = Sanitiser::render($this->title); $this->title = Sanitiser::render($this->title ?? '');
$this->description = Sanitiser::render($this->description); $this->description = Sanitiser::render($this->description ?? '');
} }
} }