Giter Club home page Giter Club logo

Comments (4)

dsnvs avatar dsnvs commented on July 23, 2024

@andatalily not sure why, but when reading from the archive, there is a feature to avoid deleting tweets that were created as replies to your own tweets (mostly affects threads).

The check used for this happens in the line 280:

if (!isInReplyToExcludedUser

You can delete the ! that appears in this line to change the behavior.

So it would become:

                if (isInReplyToExcludedUser

from deletetweets.

andatalily avatar andatalily commented on July 23, 2024

@dsnvs just tried, i still get the same result which is a deletion complete but no tweets were actually deleted. however it seems to be the issue since the only tweets that remained and popped up here and there were answers

from deletetweets.

dsnvs avatar dsnvs commented on July 23, 2024

@andatalily Just to be sure, you are using the archive, right?

You could also try to edit this:

DeleteTweets/main.js

Lines 280 to 287 in e193d28

if (!isInReplyToExcludedUser
&& ((delete_options["unretweet"] == true && startsWithRT == true) || (delete_options["unretweet"] == false && startsWithRT == false))
&& check_filter_archive(tweet_obj)) {
;
}
else {
return;
}

From:

                if (!isInReplyToExcludedUser
					&& ((delete_options["unretweet"] == true && startsWithRT == true) || (delete_options["unretweet"] == false && startsWithRT == false))
					&& check_filter_archive(tweet_obj)) {
					;
				}
				else {
					return;
				}

To:

                if (!check_filter_archive(tweet_obj)) {
					return;
				}

Beware, though, this will delete RTs and it might unexpectedly delete other tweets that are outside of the filters you set.

from deletetweets.

andatalily avatar andatalily commented on July 23, 2024

@dsnvs yes absolutely, and i get this after uploading tweets.js, tweet-headers.js and even the deleted-tweets.js that deleted a few. and it's fine for the rts and everything, my intent is going down to 0 tweets!

i tried changing the code and i managed to delete some 3 rts, but apart from those i still have 1583 tweets and 5 medias that just won't go. i was able to delete most tweets by asking for my archive again and running the process again with fewer tweets to delete, but it just deletes nothing now, when the tweets and medias do appear in the archive files (js files and folders)..

from deletetweets.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.