Skip to content
This repository was archived by the owner on Jul 8, 2022. It is now read-only.

Commit 689c56e

Browse files
committed
fix bug when not using os pass store
1 parent 934eb6d commit 689c56e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

ext/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "MasterPassword for chrome",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"manifest_version": 2,
55
"description": "Remember your MasterPassword, and this app will generate unique passwords for every other site you visit",
66
"author": "Torbjorn Tyridal (ttyridal)",

ext/src/bg/background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ function store_get(keys) {
188188
return r;
189189
})
190190
.then(r => {
191-
if (settings.pass_store !== 'n' && keys.indexOf('masterkey') !== -1) {
191+
if (settings.pass_store) {
192192
return Promise.all([r,
193193
pwvault_gateway({'type':'pwget', 'name':'default'})
194194
.catch(err => {

ext/src/options/releasenote.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</head>
99
<body>
1010
<header class="banner valign_mid container">
11-
<div class="valign_mid"><img src="../../icons/icon48.png"><h1>MasterPassword Release 2.1.1</h1></div>
11+
<div class="valign_mid"><img src="../../icons/icon48.png"><h1>MasterPassword Release 2.1.2</h1></div>
1212
</header>
1313
<main>
1414
<p>Thank you for using MasterPassword for Chrome! The easiest way to handle site-unique password on the web.
@@ -23,6 +23,7 @@ <h3>Changes since v2.1.0</h3>
2323
<ul>
2424
<li>Issue change event after password inject
2525
<li>Optionally issue submit event after password inject
26+
<li>Fix masterpassword verify fail when not using os' store
2627
</ul>
2728

2829
<h3>Review</h3>

0 commit comments

Comments
 (0)