mirror of
https://github.com/status-im/realm-js.git
synced 2025-02-22 11:18:15 +00:00
Merge pull request #1403 from realm/tg/skip-analytics-modules
Check for REALM_DISABLE_ANALYTICS earlier in submit-analytics.js
This commit is contained in:
commit
6bc5a45272
@ -25,6 +25,11 @@
|
||||
|
||||
'use strict';
|
||||
|
||||
if ('REALM_DISABLE_ANALYTICS' in process.env) {
|
||||
module.exports = function(){};
|
||||
return;
|
||||
}
|
||||
|
||||
const os = require('os');
|
||||
const crypto = require('crypto');
|
||||
const fs = require('fs');
|
||||
@ -69,9 +74,6 @@ function getAnonymizedMachineIdentifier() {
|
||||
}
|
||||
|
||||
module.exports = function(eventName) {
|
||||
if ('REALM_DISABLE_ANALYTICS' in process.env)
|
||||
return;
|
||||
|
||||
const identifier = getAnonymizedMachineIdentifier();
|
||||
const payload = {
|
||||
'event': eventName,
|
||||
|
Loading…
x
Reference in New Issue
Block a user