fix(chromium): add missing wrapped error

This commit is contained in:
Julien Neuhart
2025-10-24 14:49:54 +00:00
parent 83fdc01df1
commit 0e6bb27ecf

View File

@@ -109,7 +109,7 @@ func FormDataChromiumOptions(ctx *api.Context) (*api.FormData, Options) {
return groups[1].String() + canon + groups[3].String()
}, -1, -1)
if err != nil {
return fmt.Errorf("normalize sameSite from cookies: %w")
return fmt.Errorf("normalize sameSite from cookies: %w", err)
}
err = json.Unmarshal([]byte(normalized), &cookies)