You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I fear there is still a bug related to #370: I have a website which uses http basic auth and when I open it, I get 50+ popups from browserpass. They all hang and display nothing but the window outline. Furthermore, my CPU goes to 100% and the browserpass extension gets unusable.
I believe the issue may be that this page I want to open contains several images which all require the auth. Basically, the rule I set in nginx is:
server {
[...]
auth_basic "Restricted Access";
auth_basic_user_file htpasswd;
[...]
}