Skip to content

Commit e15f89c

Browse files
authored
Debug old message handling (#1571)
* "Debug old message handling" * Update package version
1 parent ba8de92 commit e15f89c

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

agents/bots/gm/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ const syncResults = await startUpSync(agent);
2525
const { startupTimeStamp, skippedMessagesCount, totalConversations } =
2626
syncResults;
2727

28-
console.log("Listening for messages...");
2928
agent.on("text", async (ctx) => {
3029
if (
3130
shouldSkipOldMessage(
@@ -35,7 +34,7 @@ agent.on("text", async (ctx) => {
3534
totalConversations.length,
3635
)
3736
) {
38-
return;
37+
//return;
3938
}
4039
if (ctx.isDm()) {
4140
const messageContent = ctx.message.content;

agents/bots/key-check/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ agent.on("text", async (ctx) => {
351351
totalConversations.length,
352352
)
353353
) {
354-
return;
354+
//return;
355355
}
356356
const message = ctx.message;
357357
const content = message.content;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "xmtp-qa-tools",
3-
"version": "0.4.19",
3+
"version": "0.4.20",
44
"private": true,
55
"type": "module",
66
"workspaces": [

0 commit comments

Comments
 (0)