File tree 1 file changed +2
-9
lines changed
1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -824,12 +824,6 @@ export class TwitterPostClient {
824
824
tweetState : any ,
825
825
executedActions : string [ ]
826
826
) {
827
- if ( this . isDryRun ) {
828
- elizaLogger . info ( `Dry run: would have processed reply to tweet ${ tweet . id } ` ) ;
829
- executedActions . push ( "reply (dry run)" ) ;
830
- return ;
831
- }
832
-
833
827
try {
834
828
// Build conversation thread for context
835
829
const thread = await buildConversationThread ( tweet , this . client ) ;
@@ -906,9 +900,8 @@ export class TwitterPostClient {
906
900
}
907
901
908
902
if ( this . isDryRun ) {
909
- elizaLogger . info (
910
- `Dry run: would have posted reply: ${ replyText } `
911
- ) ;
903
+ elizaLogger . info ( `Dry run: reply to tweet ${ tweet . id } would have been: ${ replyText } ` ) ;
904
+ executedActions . push ( "reply (dry run)" ) ;
912
905
return ;
913
906
}
914
907
You can’t perform that action at this time.
0 commit comments