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

Commit

Permalink
Merge pull request #42 from mrepol742/master
Browse files Browse the repository at this point in the history
Initial Commit
  • Loading branch information
mrepol742 authored Jan 22, 2024
2 parents a23862e + 4fe601f commit ef66637
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 ef66637

Please sign in to comment.