@magic-xpa/engine 4.1201.0-dev4121.270 → 4.1201.0-dev4121.271

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.
@@ -7496,6 +7496,9 @@ class RemoteCommandsProcessor extends CommandsProcessorBase {
7496
7496
  queryParams += `&${ConstInterface.RC_TOKEN_SESSION_ID}=${sessionId}`;
7497
7497
  }
7498
7498
  queryParams += `&${ConstInterface.RC_TOKEN_SESSION_COUNT}${sessionCounter}`;
7499
+ queryParams += `&${ConstInterface.RC_INDICATION}`;
7500
+ // To remove the trailing '&' character (added by RC_INDICATION) from the end of the query string
7501
+ queryParams = queryParams.substring(0, queryParams.length - 1);
7499
7502
  // Insert query parameters in the query string
7500
7503
  modifiedQuery = u.search.substring(0, ctxIdIdx + CTX_ID_PLACEHOLDER.length - 1) + queryParams + u.search.substring(ctxIdIdx + CTX_ID_PLACEHOLDER.length - 1);
7501
7504
  // modifiedQuery is updated with file name with base64 encoded.
@@ -39639,7 +39642,7 @@ class CommandsTable {
39639
39642
  }
39640
39643
  }
39641
39644
 
39642
- let CurrentClientVersion = '4.1201.0-dev4121.270';
39645
+ let CurrentClientVersion = '4.1201.0-dev4121.271';
39643
39646
 
39644
39647
  // @dynamic
39645
39648
  class ClientManager {