Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marius-wieschollek/passwords-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/js/App
diff options
context:
space:
mode:
authorMarius David Wieschollek <passwords.public@mdns.eu>2021-01-17 17:59:15 +0300
committerMarius David Wieschollek <passwords.public@mdns.eu>2021-01-17 17:59:15 +0300
commitbba69b688e7519c3f6580c67ad00015d7fefa8a1 (patch)
tree6e6465e2ad5bf2cea2f5538fad1bc437d2fd165b /src/js/App
parent60c01cc5aed8112ae5d4e1203b36d08f21c9a857 (diff)
Add local statistics to improve password recommendations
Signed-off-by: Marius David Wieschollek <passwords.public@mdns.eu>
Diffstat (limited to 'src/js/App')
-rw-r--r--src/js/App/Background.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/js/App/Background.js b/src/js/App/Background.js
index cea5277..a4e71d7 100644
--- a/src/js/App/Background.js
+++ b/src/js/App/Background.js
@@ -18,6 +18,7 @@ import ThemeRepository from '@js/Repositories/ThemeRepository';
import SettingsService from '@js/Services/SettingsService';
import MasterSettingsProvider from '@js/Settings/MasterSettingsProvider';
import LocalisationService from "@js/Services/LocalisationService";
+import PasswordStatisticsService from "@js/Services/PasswordStatisticsService";
import PassLinkManager from "@js/Manager/PassLinkManager";
class Background {
@@ -41,6 +42,7 @@ class Background {
BadgeManager.init();
ContextMenuManager.init();
MiningManager.init();
+ await PasswordStatisticsService.init();
await ServerManager.init();
await LocalisationService.init();
} catch(e) {