Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mrepol742 committed Jan 22, 2024
1 parent 1b8c6ee commit 4fe601f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9465,7 +9465,7 @@ function testCommand(api, message, prefix, senderID, permission, regex) {
if (prefix == message) return checkCmdPermission(api, permission, senderID);
return false;
}
const regExp = new RegExp("(^" + prefix + "|^" + prefix + "s)");
const regExp = new RegExp("(^" + prefix + "$|^" + prefix + "\\s)");
if (regExp.test(message)) return checkCmdPermission(api, permission, senderID);
return false;
}
Expand Down

0 comments on commit 4fe601f

Please sign in to comment.