Skip to content

Commit

Permalink
Merge pull request #13 from nwplus/dev
Browse files Browse the repository at this point in the history
fix pairings
  • Loading branch information
DonaldKLee authored Oct 21, 2024
2 parents 1107c42 + fa6548e commit 30ce6ee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -822,10 +822,10 @@ const pairMembers = async (staticArray, dynamicArray) => {

const matchingString = formatUserIds(matching);

// createGroupChatAndSendMessage(
// matchingString,
// "Hello :wave: you're on a donut ( ͡° ͜ʖ ͡°)!",
// );
createGroupChatAndSendMessage(
matchingString,
"Hello :wave: you're on a donut ( ͡° ͜ʖ ͡°)!",
);
}
return [staticArray, updatedDynamicArray];
} catch (error) {
Expand Down Expand Up @@ -1040,7 +1040,7 @@ const timeForDonutScheduler = async () => {

// runs interval to schedule donuts and update variables
// change this to 30 later, only need to run this every 30mins, not 0.2mins
const minutes = 2,
const minutes = 30,
the_interval = minutes * 60 * 1000;
setInterval(function () {
// Check if donuts should be sent
Expand Down

0 comments on commit 30ce6ee

Please sign in to comment.