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
diff options
context:
space:
mode:
authorMarius David Wieschollek <marius-david.wieschollek@intellishop.ag>2021-01-12 13:02:22 +0300
committerMarius David Wieschollek <marius-david.wieschollek@intellishop.ag>2021-01-12 13:02:22 +0300
commitae9be3ea349d87c472cea683528b62cd1ffb7e97 (patch)
tree31140cc331008e4e03119775b1d2638f5da51b33 /src/js
parentcaee830bb755b28a05864f3bb2bb8d74bd7e861d (diff)
Fix incorrect settings check
Diffstat (limited to 'src/js')
-rw-r--r--src/js/Services/NotificationService.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/Services/NotificationService.js b/src/js/Services/NotificationService.js
index c0d4c5f..cf93bee 100644
--- a/src/js/Services/NotificationService.js
+++ b/src/js/Services/NotificationService.js
@@ -46,7 +46,7 @@ class NotificationService {
updatePasswordNotification(item) {
let notification = new UpdatePasswordNotification(item);
- if(SettingsService.getValue('notification.password.new')) {
+ if(SettingsService.getValue('notification.password.update')) {
this._sendNotification(notification);
}