Merge pull request #1727 from chakflying/patch-2

Fix: Fix error when status page desc. is null
This commit is contained in:
Louis Lam
2022-06-07 16:45:28 +08:00
committed by GitHub

View File

@@ -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);