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

github.com/nextcloud/passman-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2017-08-13 11:19:46 +0300
committerbrantje <brantje@gmail.com>2017-08-13 11:19:46 +0300
commit6f4c3b17fdc0ec8fcf8c7f23d35b5cbd0c392a27 (patch)
tree48565c68e929117bfe5f34dd14cc74f2ab74da58
parent58fe46d3ba4e1cb8f052d459cb690ba21771c788 (diff)
parent15b25b3a18dd42cc452ecacad858dc1b7a314a9b (diff)
Merge branch 'nodauf-master'
-rw-r--r--js/background/service/background.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/background/service/background.js b/js/background/service/background.js
index 8b4cd10..1236591 100644
--- a/js/background/service/background.js
+++ b/js/background/service/background.js
@@ -267,7 +267,7 @@ var background = (function () {
}
credential_url = processURL(credential_url, _self.settings.ignoreProtocol, _self.settings.ignoreSubdomain, _self.settings.ignorePath, _self.settings.ignorePort);
if (credential_url) {
- if (credential_url.indexOf(url) !== -1) {
+ if (credential_url.split("\n").indexOf(url) !== -1) {
found_list.push(local_credentials[i]);
}
}