mirror of
https://github.com/seejohnrun/haste-server.git
synced 2024-11-01 03:21:21 +00:00
Fix bug in document handler
This commit is contained in:
parent
051a545a55
commit
ab47aeb88b
2 changed files with 2 additions and 2 deletions
2
about.md
2
about.md
|
@ -1,6 +1,6 @@
|
||||||
# Haste
|
# Haste
|
||||||
|
|
||||||
Sharing code is a good thing, and it should be _really_ easy to do it.
|
<b>Sharing code is a good thing</b>, and it should be _really_ easy to do it.
|
||||||
A lot of times, I want to show you something I'm seeing - and that's where we use pastebins.
|
A lot of times, I want to show you something I'm seeing - and that's where we use pastebins.
|
||||||
|
|
||||||
Haste is the prettiest, easist to use pastebin ever made.
|
Haste is the prettiest, easist to use pastebin ever made.
|
||||||
|
|
|
@ -80,7 +80,7 @@ DocumentHandler.prototype.chooseKey = function(callback) {
|
||||||
|
|
||||||
// Return a boolean indicating whether or not something can be a key
|
// Return a boolean indicating whether or not something can be a key
|
||||||
DocumentHandler.potentialKey = function(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
|
// Generate a random key
|
||||||
|
|
Loading…
Reference in a new issue