In config.rs, the Chrome config data_paths list is lacking additional patterns,
"%LOCALAPPDATA%/Google/Chrome{channel}/User Data/Profile */Network/Cookies", /*notice the s at the end*/
...
"%APPDATA%/Google/Chrome{channel}/User Data/Profile */Network/Cookies"
I have witnessed first-hand this file being created instead of Cookie for Chrome 118.0.5993.71 with a signed-in google account attached. I would consider this a bug over a feature request because all the rest of the Chromium-based browser configs have it already. I can submit a PR if you want it, but the solution in this case is so trivial I don't think its worth the extra effort rather than rolling this fix into the next update.
Steps to reproduce
Install Chrome 118.0.5993.71
Sign the browser into a new Google account
A new Profile directory is created, i.e. Profile n/
Check the cookie database name, Cookies instead of Cookie under Profile n/Network/.
What happened?
In
config.rs
, the Chrome configdata_paths
list is lacking additional patterns,I have witnessed first-hand this file being created instead of
Cookie
for Chrome 118.0.5993.71 with a signed-in google account attached. I would consider this a bug over a feature request because all the rest of the Chromium-based browser configs have it already. I can submit a PR if you want it, but the solution in this case is so trivial I don't think its worth the extra effort rather than rolling this fix into the next update.Steps to reproduce
Profile n/
Cookies
instead ofCookie
underProfile n/Network/
.What browsers are you seeing the problem on?
Chrome
Relevant log output
No response