Bug 1506044 - Do not send cookies with ASan reporter submits. r=johannh

Differential Revision: https://phabricator.services.mozilla.com/D12317

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Christian Holler 2018-11-21 23:18:27 +00:00
Родитель 6d748c47a8
Коммит e48061eb07
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -163,6 +163,9 @@ function submitToServer(data) {
// For internal testing purposes, an auth_token can be specified
if (auth_token) {
xhr.setRequestHeader("Authorization", "Token " + auth_token);
} else {
// Prevent privacy leaks
xhr.channel.loadFlags |= Ci.nsIRequest.LOAD_ANONYMOUS;
}
xhr.onreadystatechange = function() {