The bug have appeared after the update.
I optionally use -o text-tweets=true only when I need to save no media tweet's text (in fact to download everything of the passed profile), since usually it is required only for some profiles.
alias gga='gallery-dl --download-archive ~/gallery-dl/gallery-dl.sqlite'
alias ggat='gallery-dl -o text-tweets=true --download-archive ~/gallery-dl/gallery-dl.sqlite'
The conf:
"twitter":
{
"retweets": false,
"directory": ["[gallery-dl]", "[{category}] {author[name]}"],
"filename": "[{category}] {author[name]}—{date:%Y.%m.%d}—{retweet_id|tweet_id}—{filename}.{extension}",
"size": ["orig", "4096x4096", "large", "medium", "small"],
"fallback": false,
"cards": false,
"pinned": true,
"replies": "self",
"cookies": {
"auth_token": "XXX"
},
"text-tweets": false,
"postprocessors": [{
"name": "mtime",
"event": "post"
}, {
"directory": "metadata",
"filename": "[{category}] {author[name]}—{date:%Y.%m.%d}—{retweet_id|tweet_id}.html",
"name": "metadata",
"event": "post",
"mtime": true,
"mode": "custom",
"archive": "~/gallery-dl/gallery-dl-postprocessors.sqlite",
"archive-format": "{tweet_id}_{retweet_id}_p1",
"format": "<div id='{retweet_id|tweet_id}'><h4><a href='https://twitter.com/{author[name]}/status/{retweet_id|tweet_id}'>{retweet_id|tweet_id}</a> by <a href='https://twitter.com/{author[name]}'>{author[name]}</a></h4><div class='content'>{content}</div><hr><div>{date:%Y.%m.%d %H:%M:%S}</div><hr></div><br>"
}]
},
Now when I use ggat it downloads the retweets reply target posts, that is undesirable. gga works as expected (as earlier).
The bug have appeared after the update.
I optionally use
-o text-tweets=trueonly when I need to save no media tweet's text (in fact to download everything of the passed profile), since usually it is required only for some profiles.The conf:
Now when I use
ggatit downloads theretweetsreply target posts, that is undesirable.ggaworks as expected (as earlier).