mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-02 08:30:14 +01:00
basic auth prompts for https
This commit is contained in:
parent
41c32f3874
commit
219a434594
@ -264,7 +264,7 @@ chrome.webRequest.onAuthRequired.addListener(function (details, callback) {
|
||||
callback();
|
||||
});
|
||||
}
|
||||
}, { urls: ['http://*/*'] }, [bg_utilsService.isFirefox() ? 'blocking' : 'asyncBlocking']);
|
||||
}, { urls: ['http://*/*', 'https://*/*'] }, [bg_utilsService.isFirefox() ? 'blocking' : 'asyncBlocking']);
|
||||
|
||||
chrome.webRequest.onCompleted.addListener(completeAuthRequest, { urls: ['http://*/*'] });
|
||||
chrome.webRequest.onErrorOccurred.addListener(completeAuthRequest, { urls: ['http://*/*'] });
|
||||
|
Loading…
Reference in New Issue
Block a user