From a1a601c0e2d2aec8551e594c9ad6e229e49710c7 Mon Sep 17 00:00:00 2001 From: caiacostello <85137755+caiacostello@users.noreply.github.com> Date: Tue, 3 Dec 2024 08:49:10 -0800 Subject: [PATCH] Update head.html the ? means its ok if it's undefined so it won't throw the error, cannot read properties of undefined. --- _includes/head.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/head.html b/_includes/head.html index 4d80880c..6a411fbf 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -30,7 +30,7 @@ if (sm) { for (const video of videos) video.play(); } else { - videos[0].play(); + videos[0]?.play(); } function showAllPeople() {