pfn / passifox

Extensions to allow Chrome and Firefox (4.0+) to auto form-fill passwords from KeePass (requires KeePassHttp)
GNU General Public License v3.0
906 stars 185 forks source link

"KeePass database is not open" on every page load #427

Open JayDi85 opened 8 years ago

JayDi85 commented 8 years ago

Hello.

After firefox update to 41 I'm got "KeePass database is not open" message on every page load/refresh. Before 41 version that message sometimes popup. But now it's pop up on every load.

Please, check your code and remove that annoying thing. Looks like it's cause by your "set_login" function.

braincow commented 8 years ago

Similar happens for me with "KeePassHttp is not running" message as well - on, every, single, page, load and sometimes even several times on a single page if the message is dismissed away.

HeyZiko commented 8 years ago

+1. Related to #227 and even identified in add-on ratings (https://addons.mozilla.org/en-us/firefox/addon/passifox/reviews/664138/)

braincow commented 8 years ago

I forked, I branched and I created a simple configuration workaround for this issue. Lets just hope that the developer sees my code worthy of a pull: https://github.com/pfn/passifox/pull/449

3ruce commented 8 years ago

Yep... I manually changed

pref("extensions.passifox.notification.kpf-db-note", true);

to

pref("extensions.passifox.notification.kpf-db-note", false);

As outlined here https://github.com/pfn/passifox/blob/master/passifox/defaults/preferences/defaults.js

And that worked temporarily, but it would be great to see this incorporated into a new release...

pfn commented 8 years ago

Edit it in about:config

On Thu, Jun 9, 2016, 4:00 AM Bruce notifications@github.com wrote:

Yep... I manually changed

pref("extensions.passifox.notification.kpf-db-note", true);

to

pref("extensions.passifox.notification.kpf-db-note", false);

As outlined here https://github.com/pfn/passifox/blob/master/passifox/defaults/preferences/defaults.js

And that worked temporarily, but it would be great to see this incorporated into a new release...

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/pfn/passifox/issues/427#issuecomment-224863288, or mute the thread https://github.com/notifications/unsubscribe/AAfQxbh-ySz2hYrsbFLqE-iH2xZndPYEks5qJ_JZgaJpZM4GGd1G .

3ruce commented 8 years ago

Thanks!