@24i/bigscreen-sdk 1.0.33-alpha.2548 → 1.0.33-alpha.2549

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@24i/bigscreen-sdk",
3
- "version": "1.0.33-alpha.2548",
3
+ "version": "1.0.33-alpha.2549",
4
4
  "description": "SmartApps BIGscreen SDK monorepo",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -24,7 +24,7 @@ export const pathToRegExp = (path: string) => {
24
24
  };
25
25
 
26
26
  const toUrlSafeBase64 = (param: string) => btoa(param).replace('/', '_');
27
- const fromUrlSafeBase64 = (base64: string) => atob(base64).replace('_', '/');
27
+ const fromUrlSafeBase64 = (base64: string) => atob(base64.replace('_', '/'));
28
28
 
29
29
  export const toSafeUrl = (param: string) => (
30
30
  toUrlSafeBase64(unescape(encodeURIComponent(param)))