fix issue
parent
1164034e55
commit
c812a2fe02
|
@ -20,6 +20,7 @@ export default class CWG_SelfService extends Command {
|
|||
}
|
||||
|
||||
public async run(message: Message, args: string[]) {
|
||||
console.log(args);
|
||||
const reqDomain = `${escape(args[0])}.cloud.libraryofcode.org`;
|
||||
|
||||
try {
|
||||
|
@ -113,7 +114,8 @@ export default class CWG_SelfService extends Command {
|
|||
}
|
||||
|
||||
public domainTextValidation(domain: string) {
|
||||
if (/[^\w\s-]/.test(domain)) return false;
|
||||
if (/[^\w\s-]/.test(domain.trim().toLowerCase())) return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
public async checkAuthorizationToken(userID: string, token: string) {
|
||||
|
|
Loading…
Reference in New Issue