@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.
Files changed (2) hide show
  1. package/index.js +3 -2
  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, cookieValue]) => {
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.0" ,
565
+ sdkVersion: "0.62.1" ,
565
566
  ...(payload || {}),
566
567
  };
567
568
  let storage = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blotoutio/edgetag-sdk-browser",
3
- "version": "0.62.0",
3
+ "version": "0.62.1",
4
4
  "description": "Browser SDK for EdgeTag",
5
5
  "author": "Blotout",
6
6
  "license": "MIT",