@blotoutio/edgetag-sdk-browser 0.62.0 → 0.62.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +3 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -485,7 +485,8 @@
|
|
|
485
485
|
return Object.fromEntries(cookie
|
|
486
486
|
.split(/;\s+/)
|
|
487
487
|
.map((r) => r.split('=').map((str) => str.trim()))
|
|
488
|
-
.map(([cookieKey,
|
|
488
|
+
.map(([cookieKey, ...cookieValues]) => {
|
|
489
|
+
const cookieValue = cookieValues.join('=');
|
|
489
490
|
if (!cookieKey) {
|
|
490
491
|
return [];
|
|
491
492
|
}
|
|
@@ -561,7 +562,7 @@
|
|
|
561
562
|
referrer: getReferrer(destination),
|
|
562
563
|
search: getSearch(destination),
|
|
563
564
|
locale: getLocale(),
|
|
564
|
-
sdkVersion: "0.62.
|
|
565
|
+
sdkVersion: "0.62.1" ,
|
|
565
566
|
...(payload || {}),
|
|
566
567
|
};
|
|
567
568
|
let storage = {};
|