You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The getContext function can cause the entire integration to fail to load if it encounters an error. This typically is identified right away when doing an integration, however, there are cases where there may be an error when using a branch over ride (or the Snapfu extension). These errors can occur because the bundle evaluates at a different time, and global variables may now exist. The error only happens when there is a variable being declared in the script that was not requested in the "evaluate" parameter. A global variable is attempted to be overwritten - because the variable was not part of the "evaluate" list.
The error that can happen is: Assignment to constant variable.
The text was updated successfully, but these errors were encountered:
The
getContext
function can cause the entire integration to fail to load if it encounters an error. This typically is identified right away when doing an integration, however, there are cases where there may be an error when using a branch over ride (or the Snapfu extension). These errors can occur because the bundle evaluates at a different time, and global variables may now exist. The error only happens when there is a variable being declared in the script that was not requested in the "evaluate" parameter. A global variable is attempted to be overwritten - because the variable was not part of the "evaluate" list.The error that can happen is:
Assignment to constant variable.
The text was updated successfully, but these errors were encountered: