mikf / gallery-dl

Command-line program to download image galleries and collections from several image hosting sites
GNU General Public License v2.0
11.87k stars 976 forks source link

[Bug] Can't download pics/vids from Reddit profiles anymore #3521

Closed Roccobot closed 1 year ago

Roccobot commented 1 year ago

Sometimes I use gallery-dl to comfortably download every picture and video of a given username. I just go gallery-dl https://www.reddit.com/user/X/ and everything is saved inside a subfolder, also including external content like Gfycat/RedGifs videos (as per my config file).

Since I updated to the latest release, I see that only the latest picture or video posted by the Reddit user is downloaded.

mikf commented 1 year ago

Just a guess, but this might be due to the same issue as in #3412 as well as you still having id-max set to the previous default zik0zj.

Roccobot commented 1 year ago

I tried to read the other issue, but I can't understand much. Is it something I should change in my config?

Silent-Soldier commented 1 year ago

In your config file change "id-max": "zik0zj", or whatever value you have entered, to "id-max": null. You can also just delete the line as well. Example config settings below.


"reddit":
{
    "date-min": 0,
    "date-max": 253402210800,
    "date-format": "%Y-%m-%dT%H:%M:%S",
    "id-min": null,
    "id-max": null,
    "videos": true
},
Hrxn commented 1 year ago

Well, I just tested it with a user profile link as described in OP, and it's still working for me, just as before. 🤷

Roccobot commented 1 year ago

In your config file change "id-max": "zik0zj", or whatever value you have entered, to "id-max": null.

@Silent-Soldier it worked, thanks a lot!