We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ffee8a commit cd0f312Copy full SHA for cd0f312
desktop-metrics.html
@@ -5,8 +5,8 @@
5
<title>Desktop Metrics logger with Google Analytics</title>
6
<script>
7
let gaReady = false;
8
- function installGoogleAnalytics(analyticsID, customUserID) {
9
- if(!analyticsID || !customUserID || gaReady){
+ function installGoogleAnalytics(analyticsID) {
+ if(!analyticsID || gaReady){
10
return ;
11
}
12
// ga primer scripts
@@ -31,7 +31,7 @@
31
async function processRequest(event) {
32
const payload = event.payload;
33
if(!gaReady) {
34
- installGoogleAnalytics(payload.analyticsID, payload.customUserID);
+ installGoogleAnalytics(payload.analyticsID);
35
36
37
for(let eventPayload of payload.events) {
0 commit comments