Bug 1450565 use GET for initial authorization request, r=mossop

MozReview-Commit-ID: 70PQSeoxvOF

--HG--
extra : rebase_source : e35e5f5d9e3cea22776078ffdb3085ffe61ba99e
This commit is contained in:
Shane Caraveo 2018-04-17 10:06:13 -05:00
Родитель fae2220724
Коммит da4c5b3b35
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -14,7 +14,7 @@ var {
const checkRedirected = (url, redirectURI) => {
return new Promise((resolve, reject) => {
let xhr = new XMLHttpRequest();
xhr.open("HEAD", url);
xhr.open("GET", url);
// We expect this if the user has not authenticated.
xhr.onload = () => {
reject(0);