From 7083ff9e98e9d20433fd0a3a53a08b3aa154c84c Mon Sep 17 00:00:00 2001 From: Matt Johnson Date: Mon, 10 Apr 2017 08:35:19 -0700 Subject: [PATCH] Make all zones available for guessing Fixes #482 --- moment-timezone.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/moment-timezone.js b/moment-timezone.js index b089991d..929ff03b 100644 --- a/moment-timezone.js +++ b/moment-timezone.js @@ -383,9 +383,7 @@ normalized = normalizeName(name); zones[normalized] = packed[i]; names[normalized] = name; - if (split[5]) { - addToGuesses(normalized, split[2].split(' ')); - } + addToGuesses(normalized, split[2].split(' ')); } }