Skip to content

Commit f3538d0

Browse files
authored
Merge pull request #1268 from oxSaturn/fix/ENABLE_ACTION_PROCESSING
fix: fix ENABLE_ACTION_PROCESSING logic
2 parents e201228 + db8db28 commit f3538d0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/client-twitter/src/post.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -175,9 +175,7 @@ export class TwitterPostClient {
175175
generateNewTweetLoop();
176176

177177
// Add check for ENABLE_ACTION_PROCESSING before starting the loop
178-
const enableActionProcessing = parseBooleanFromText(
179-
this.runtime.getSetting("ENABLE_ACTION_PROCESSING") ?? "true"
180-
);
178+
const enableActionProcessing = this.runtime.getSetting("ENABLE_ACTION_PROCESSING") ?? false;
181179

182180
if (enableActionProcessing) {
183181
processActionsLoop().catch((error) => {

0 commit comments

Comments
 (0)