Fixes Issue #62 (adds another misbehaving host)

This commit is contained in:
ciaranj 2011-08-23 20:59:47 +01:00
parent 6b4dbcda72
commit 3c45927acd
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
// Returns true if this is a host that closes *before* it ends?!?!
module.exports.isAnEarlyCloseHost= function( hostName ) {
return hostName.match(".*google.com$")
return hostName.match(".*google(apis)?.com$")
}