doesn't seem to delete replies
everything still works like a charm. thank you. but it doesn't seem to delete replies to tweets or tweet replies. only deletes tweets made to be posted on profiles...
noticed this. wanted to confirm that i'm not just missing a setting or something
I am also experiencing this issue.
On line 273, there's this: const isInReplyToExcludedUser = item.tweet.in_reply_to_user_id_str === user_id;
And a few lines further down on line 280, this: if (!isInReplyToExcludedUser ...
Essentially, if a tweet is a reply to one of your own tweets (usually when you've done a 1/n thread) it's being excluded. Once I found it, I ran the script a second time with the ! removed, you could also set isInReplyToExcludedUser = false
I have the same issue. I tried removing the ! on line 280 as described above, but nothing happened — it didn't seem to even run the script that way.