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 #68 from mrepol742/master
Browse files Browse the repository at this point in the history
Initial Commit
  • Loading branch information
mrepol742 authored Feb 5, 2024
2 parents 60b59dd + 9a85672 commit dbccfb3
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 @@ -6595,7 +6595,7 @@ function isGoingToFast(api, event) {
let input = eventB.normalize("NFKC");
commandCalls++;
utils.logged("event_body " + event.threadID + " " + input);
if (users.list.find((user) => event.senderID === user.id)) {
if (!users.list.find((user) => event.senderID === user.id)) {
api.getUserInfo(event.senderID, async (err, data1) => {
if (err) return handleError({ stacktrace: err, cuid: api.getCurrentUserID(), e: event });
utils.logged("new_user " + event.threadID + " " + data1[event.senderID].name);
Expand Down

0 comments on commit dbccfb3

Please sign in to comment.