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
diff options
context:
space:
mode:
authorMarius David Wieschollek <passwords.public@mdns.eu>2021-12-01 22:14:36 +0300
committerMarius David Wieschollek <passwords.public@mdns.eu>2021-12-01 22:14:36 +0300
commitaec03f8aca504f0d26c9a55799579e4c71c50ace (patch)
tree757a08bf063cc8f3614ee87cd511828d09ade4bc
parent03b6fe20b21b668bf3e42f9a56a42232df277302 (diff)
Update readme infos
-rw-r--r--Contributing.md2
-rw-r--r--Readme.md8
-rw-r--r--src/js/Miner/DomMiner.js8
3 files changed, 8 insertions, 10 deletions
diff --git a/Contributing.md b/Contributing.md
index 98f9aea..7936efe 100644
--- a/Contributing.md
+++ b/Contributing.md
@@ -3,7 +3,7 @@ A running Nextcloud instance with the passwords app installed.
You can find instructions to set up a test server in the [main project](https://github.com/marius-wieschollek/passwords)
Firefox and Chromium are required.
_Using a test account is recommended_
-
+A [test server can be found here](https://test.passwordsapp.org/apps/cms_pico/pico/passwords_test).
### Building from source
diff --git a/Readme.md b/Readme.md
index 36b3bc7..7dbd588 100644
--- a/Readme.md
+++ b/Readme.md
@@ -43,8 +43,6 @@ The Passwords App can be downloaded for free from the [Nextcloud app store](http
### Development
See [contributing](Contributing.md).
-##### Notes for AMO reviewers
-1. This extension uses Vue.js and webpack
-2. This extension requires a Nextcloud 17+ server with Passwords 2020.2.0+
-3. This extension and all required software is available for free
-4. See [contributing](Contributing.md). \ No newline at end of file
+### Donations
+You can donate to the author of this extension [here](https://ko-fi.com/mariusdavid).
+A more complete list of developers creating the passwords app and it's clients can be found [here](https://github.com/marius-wieschollek/passwords/blob/master/Donate.md). \ No newline at end of file
diff --git a/src/js/Miner/DomMiner.js b/src/js/Miner/DomMiner.js
index d96a0a7..bec8a3d 100644
--- a/src/js/Miner/DomMiner.js
+++ b/src/js/Miner/DomMiner.js
@@ -70,11 +70,11 @@ export default class DomMiner {
}
_checkForDuplication(form) {
- var exists = false;
+ let exists = false;
this._knownForms.forEach(element => {
- if((element.pass == form.pass.value) &&
- (element.user == form.user.value) &&
- (element.url == this._getUrl())) {
+ if((element.pass === form.pass.value) &&
+ (element.user === form.user.value) &&
+ (element.url === this._getUrl())) {
exists = true;
}
});