mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Add wildcard to the ignored URL
This commit is contained in:
parent
d518662696
commit
f49b0bcd9e
1 changed files with 2 additions and 1 deletions
|
|
@ -107,7 +107,8 @@ kpxcBanner.create = async function(credentials = {}) {
|
|||
kpxcBanner.banner.removeChild(dialog);
|
||||
} else {
|
||||
if (ignoreCheckbox.checked) {
|
||||
kpxc.ignoreSite([ window.top.location.href ]);
|
||||
const ignoreUrl = window.location.href.slice(0, window.location.href.lastIndexOf('/') + 1) + '*';
|
||||
kpxc.ignoreSite([ ignoreUrl ]);
|
||||
}
|
||||
kpxcBanner.destroy();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue