Fix: Fix error when status page desc. is null

pull/1727/head
Nelson Chan 2 years ago committed by GitHub
parent 4fdaa1abb6
commit 2c0180f323
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -36,7 +36,7 @@ class StatusPage extends BeanModel {
*/
static async renderHTML(indexHTML, statusPage) {
const $ = cheerio.load(indexHTML);
const description155 = statusPage.description.substring(0, 155);
const description155 = statusPage.description?.substring(0, 155);
$("title").text(statusPage.title);
$("meta[name=description]").attr("content", description155);

Loading…
Cancel
Save