diff --git a/src/util/RequestsUtil.ts b/src/util/RequestsUtil.ts index 032c2ee..b61a454 100644 --- a/src/util/RequestsUtil.ts +++ b/src/util/RequestsUtil.ts @@ -101,7 +101,7 @@ export class RequestsUtil { * @returns A NEW regex object every time. You have to store it as a variable if you use `exec` on it, otherwise you will encounter infinite loops. */ public static getTicketRequestRegex(): RegExp { - return new RegExp( `?`, 'g' ); + return new RegExp( `?`, 'g' ); } public static async checkTicketValidity( tickets: string[] ): Promise {