prevent crashes due to timezone === null

This commit is contained in:
naskya 2023-04-15 01:01:36 +09:00
parent 4fc833c84c
commit d73a87b1b9

View File

@ -374,6 +374,8 @@ const timeForThem = $computed(() => {
if (tzInfo.length == 0) continue;
const tz = tzInfo[0].timezone;
if (!tz) continue;
const theirTime = new Date().toLocaleString("en-US", {
timeZone: tz,
hour12: false,