Closed Minecodes closed 11 months ago
I'll have a deeper look later this week, but it doesn't seem like a pixiv API issue as I can login, which is good.
It looks weird though, it's saying the file isn't found but I'm explicitly telling it to create a new file if it doesn't exist (exist_ok=True
). Maybe the parent directory doesn't exist? Try mkdir -p ~/.local/share/koneko
or patch:
+ parent = Path('~/.local/share/koneko').expanduser()
+ parent.mkdir(exist_ok=True, parents=True)
+ path = parent / 'code_verifier'
- path = Path('~/.local/share/koneko/code_verifier').expanduser()
path.touch(exist_ok=True)
That worked for me. Thanks!
When I log in, I get this error and crashes: