@alfresco/adf-content-services 8.4.0-18303591209 → 8.4.0-18311034359

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.
@@ -4541,7 +4541,7 @@ class BaseQueryBuilderService {
4541
4541
  */
4542
4542
  encodeQuery() {
4543
4543
  try {
4544
- this.encodedQuery = btoa(JSON.stringify(this.filterRawParams));
4544
+ this.encodedQuery = btoa(String.fromCharCode(...new TextEncoder().encode(JSON.stringify(this.filterRawParams))));
4545
4545
  }
4546
4546
  catch (error) {
4547
4547
  console.error('Failed to encode query parameters:', error);