diff --git a/utils/Regex.ts b/utils/Regex.ts index 739d001..b118e44 100644 --- a/utils/Regex.ts +++ b/utils/Regex.ts @@ -2,6 +2,6 @@ import urlRegex from 'url-regex' export const ID = /[0-9]{17,}/ export const Vanity = /[A-z|\d|-]+/ -export const Prefix = /^\s/ +export const Prefix = /^[^\s]/ export const HTTPProtocol = /^https?:\/\/.*?/ export const Url = urlRegex({ strict: true }) \ No newline at end of file