Open MetaStellar opened 1 year ago
Hello, I also had the same issue. Analyzing the code, it never can happen that a comment is posted from the feed because in the handle_posts method, the interaction is not called if it is... a feed job !
From handle_sources.py
if current_job != "feed":
opened, _, _ = post_view_list._post_owner(
current_job, Owner.OPEN, username
)
if opened:
if not interact(
storage=storage,
is_follow_limit_reached=is_follow_limit_reached,
username=username,
interaction=interaction,
device=device,
session_state=session_state,
current_job=current_job,
target=target,
on_interaction=on_interaction,
):
break
device.back()
I made an ugly patch to call the _comment routine from interaction.py ... it works but that's not a fix neither a proper design. I will ask on Discord if somenone has a design to suggest.
I am writing to report an issue I'm experiencing with the bot not leaving comments either on the feed or on any other job.
I have tried different configurations and settings, yet the issue persists. As an example, I tried using a setup with 0% likes and 100% comments with the feed source, but the bot still won't comment on the feed posts.
Here are the details of my current configuration, filters, and comments:
Config:
Filters:
Comments:
Log
The behavior expected is for the bot to leave a comment on the feed posts, but it seems like the comment action is not getting triggered at all.