prevent crashes due to timezone === null
This commit is contained in:
parent
4d0245f1a5
commit
a2e56314fe
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue