You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the the config generator to create a config.json there is no entry regarding the cookie. Running the script / docker container will result in an error:
2023-03-01 15:06:03 Traceback (most recent call last):
2023-03-01 15:06:03 File "/opt/comic-dl/cli.py", line 5, in <module>
2023-03-01 15:06:03 main()
2023-03-01 15:06:03 File "/opt/comic-dl/comic_dl/__main__.py", line 20, in main
2023-03-01 15:06:03 ComicDL(sys.argv[1:])
2023-03-01 15:06:03 File "/opt/comic-dl/comic_dl/comic_dl.py", line 135, in __init__
2023-03-01 15:06:03 manual_cookie = data["cookie"]
2023-03-01 15:06:03 KeyError: 'cookie'
Example output from docker run -it --name comic-dl-config --rm -v /c/Users/Username/ComicDL:/directory:rw -w /directory ghcr.io/xonshiz/comic-dl:latest_linux_amd64 comic_dl -dd /directory --config
:
When using the the config generator to create a config.json there is no entry regarding the cookie. Running the script / docker container will result in an error:
Example output from
docker run -it --name comic-dl-config --rm -v /c/Users/Username/ComicDL:/directory:rw -w /directory ghcr.io/xonshiz/comic-dl:latest_linux_amd64 comic_dl -dd /directory --config
:
Adding a
"cookie": "None",
data entry to the config.json file lets the script run as normal when using the--auto
flag.The text was updated successfully, but these errors were encountered: