diff --git a/moment-timezone.js b/moment-timezone.js index e27c4de6..d2d84440 100644 --- a/moment-timezone.js +++ b/moment-timezone.js @@ -330,7 +330,7 @@ // use Intl API when available and returning valid time zone try { var intlName = Intl.DateTimeFormat().resolvedOptions().timeZone; - if (intlName){ + if (intlName && intlName.length > 3) { var name = names[normalizeName(intlName)]; if (name) { return name;