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 e4f8d3b commit 3b79662Copy full SHA for 3b79662
src/js/states/preload.js
@@ -73,9 +73,9 @@ export class PreloadState extends GameState {
73
"https://analytics.shapez.io/campaign/" +
74
queryParamOptions.campaign +
75
"?lpurl=nocontent&fbclid=" +
76
- queryParamOptions.fbclid +
+ (queryParamOptions.fbclid || "") +
77
"&gclid=" +
78
- queryParamOptions.gclid
+ (queryParamOptions.gclid || "")
79
).catch(err => {
80
console.warn("Failed to send beacon:", err);
81
});
0 commit comments