1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00

Change verifyNickname to es5 rather than es6.

We're not really using much es6 features, so we might as well make this a normal function so that people with browsers that are old due to not being able to update them (such as apple devices not getting updates the os after end of life). Also replaces the `const` with a `var` since it doesn't really matter if it's modified or not and that is an es6 feature was well.
This might fix https://github.com/hack-chat/main/issues/33 or at least the issues 'CheekyChops' having. I didn't test this code, but it's such a simple change.
This commit is contained in:
MinusGix 2019-01-13 16:08:16 -06:00 committed by GitHub
parent ba9e2719cc
commit 6dc30d5287
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,9 @@
*
*/
const verifyNickname = (nick) => /^[a-zA-Z0-9_]{1,24}$/.test(nick);
var verifyNickname = function (nick) {
return /^[a-zA-Z0-9_]{1,24}$/.test(nick);
}
var frontpage = [
" _ _ _ _ ",