Skip to content

Commit

Permalink
Bug fix b/c I am an idiot sometimes
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmcwhirter committed Sep 21, 2010
1 parent 102d317 commit 3990479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/zoneinfo.js
Expand Up @@ -488,7 +488,7 @@ var parseZonefile = function (file){
}

module.exports.listTimezones = function (country_code){
country_code = country_code ? country_code.trim().toUpperCase() || "";
country_code = country_code ? country_code.trim().toUpperCase() : "";

if (_zoneinfo_listcache[country_code || "_"]){
return _zoneinfo_listcache[country_code || "_"];
Expand Down

0 comments on commit 3990479

Please sign in to comment.