Fix uncaught TypeError
This commit is contained in:
parent
1b8798cc82
commit
f12c4f6b8c
1 changed files with 2 additions and 2 deletions
|
@ -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 ?? '');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue