Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[deviantart] Unexpected commandline output when downloading files already downloaded before and saved in archive.sqlite3 #3407

Closed
growingProvince opened this issue Dec 15, 2022 · 1 comment

Comments

@growingProvince
Copy link

When I download a deviantart users gallery by using this command:
gallery-dl deviantart.com/[username]/gallery
The first run finishes as expected and prints all the file paths it creates to console out like this:
./gallery-dl/deviantart/username/examplefilname.extension
If I run the same command again for the same user the same is true for new elements created by the user. But as soon as gallery-dl reaches an element it has encountered before it now prints
./gallery-dl/deviantart/username/?
for each element that was already encountered by gallery-dl.
Deleting the archive.sqlite3 file resets gallery-dl to default behavior for the user for the next run.
My configuration file for the deviantart extractor looks like this:

"deviantart":
        {
            "archive": "./gallery-dl/archive-deviantart.sqlite3",
            "client-id": "[redacted]",
            "client-secret": "[redacted]",
            "comments": true,
            "extra": true,
            "flat": true,
            "folders": true,
            "include": "all",
            "journals": "html",
            "mature": true,
            "metadata": true,
            "original": true,
            "wait-min": 1,
            "auto-watch": true,
            "quality": 100,
            "filename": "{index}_{title[:50]}.{extension}",
            "directory": ["deviantart","{author[username]}"],

            "postprocessors": [
                {
                    "name": "metadata",
                    "metadata": true,
                    "folders": true,
                    "event": "post",
                    "comments": true,
                    "filename": "{index}_{title[:50]}.json"
                }
            ]
        },

gallery-dl version is: 1.24.1

@mikf
Copy link
Owner

mikf commented Dec 15, 2022

This was already reported in #3362 and #3377 and will be fixed in the next release (6afb3cc).
It only prints an incomplete path. Everything else still works as before.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants