We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9095e34 commit f6ec683Copy full SHA for f6ec683
src/RESTController.js
@@ -161,7 +161,10 @@ const RESTController = {
161
}
162
163
payload._ApplicationId = CoreManager.get('APPLICATION_ID');
164
- payload._JavaScriptKey = CoreManager.get('JAVASCRIPT_KEY');
+ let jsKey = CoreManager.get('JAVASCRIPT_KEY');
165
+ if (jsKey) {
166
+ payload._JavaScriptKey = jsKey;
167
+ }
168
payload._ClientVersion = CoreManager.get('VERSION');
169
170
var useMasterKey = options.useMasterKey;
0 commit comments