File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ const syncResults = await startUpSync(agent);
2525const { startupTimeStamp, skippedMessagesCount, totalConversations } =
2626 syncResults ;
2727
28- console . log ( "Listening for messages..." ) ;
2928agent . 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 ;
Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff line change 11{
22 "name" : " xmtp-qa-tools" ,
3- "version" : " 0.4.19 " ,
3+ "version" : " 0.4.20 " ,
44 "private" : true ,
55 "type" : " module" ,
66 "workspaces" : [
You can’t perform that action at this time.
0 commit comments