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
Hi, program is throwing an error on index.js line 37
c:\Users\.........\Domestika\domestika-downloader-main\index.js:37
const access_token = regex_token.exec(decodeURI(_credentials_))[1];
^
TypeError: Cannot read properties of null (reading '1')
at Object.<anonymous> (c:\Users\.........\_Domestika\domestika-downloader-main\index.js:37:64)
This happens because decodeURI isn't enough to decode _credentials_ cookie (there are still leftovers like %3A %2C), so I replaced it with decodeURIComponent and it works like a charm now. Thanks a lot for this tool!
Hi, program is throwing an error on index.js line 37
This happens because decodeURI isn't enough to decode _credentials_ cookie (there are still leftovers like %3A %2C), so I replaced it with decodeURIComponent and it works like a charm now. Thanks a lot for this tool!
const access_token = regex_token.exec(decodeURIComponent(_credentials_))[1];
The text was updated successfully, but these errors were encountered: