1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-09-07 00:38:13 +02:00

basic auth prompts for https

This commit is contained in:
Kyle Spearrin 2017-09-07 23:49:35 -04:00
parent 41c32f3874
commit 219a434594

View File

@ -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://*/*'] });