aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/controllers/preferences.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/scripts/controllers/preferences.js')
-rw-r--r--app/scripts/controllers/preferences.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/scripts/controllers/preferences.js b/app/scripts/controllers/preferences.js
index 39ca16f28..70fbd1224 100644
--- a/app/scripts/controllers/preferences.js
+++ b/app/scripts/controllers/preferences.js
@@ -33,6 +33,8 @@ class PreferencesController {
lostIdentities: {},
}, opts.initState)
+ this.getFirstTimeInfo = opts.getFirstTimeInfo || null
+
this.store = new ObservableStore(initState)
}
// PUBLIC METHODS
@@ -130,7 +132,8 @@ class PreferencesController {
// Notify our servers:
const uri = 'https://diagnostics.metamask.io/v1/orphanedAccounts'
- notifier.notify(uri, { accounts: Object.keys(newlyLost), version })
+ const firstTimeInfo = this.getFirstTimeInfo ? this.getFirstTimeInfo() : {}
+ notifier.notify(uri, { accounts: Object.keys(newlyLost), version, firstTimeInfo })
.catch(log.error)
for (let key in newlyLost) {