Rank: Advanced Member Groups: Member
Joined: 9/20/2016 Posts: 73
|
Hi! In the latest version of WebBrowser (2023.3.77), I have a strange bug: if there is a “#” in the folder name, for example, “C:\###MyProgs”, then the Cookie file is not created. It should be on the path: c:\###MyProgz\Browser\cache\Network\Cookies
If the folder name is "C:\MyProgs", then everything is ok.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,217
|
Hi,
We have looked into the Chromium source code and confirmed that you can not have any special Uri characthers in the cookie file path. This is due to the fact that Chromium opens the cookie SQL Lite database with SQLITE_OPEN_URI flag. As a result, special Uri characters such as "?" or "#" will cause it to fail.
We will add code to check for such characters in our code and throw an exception in our next build.
Thanks!
|