Fix bug in document handler

This commit is contained in:
John Crepezzi 2011-11-22 20:38:52 -05:00
parent 051a545a55
commit ab47aeb88b
2 changed files with 2 additions and 2 deletions

View file

@ -80,7 +80,7 @@ DocumentHandler.prototype.chooseKey = function(callback) {
// Return a boolean indicating whether or not something can be a key
DocumentHandler.potentialKey = function(key) {
return key.match(/^[a-zA-Z0-9]+(\.[a-zA-Z]+?)$/);
return key.match(/^[a-zA-Z0-9]+(\.[a-zA-Z]+)?$/);
};
// Generate a random key