This commit is contained in:
Vlad Filippov 2019-07-30 11:42:45 -04:00
Родитель 475eb765ec
Коммит fe47173078
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 424000227F3C6575
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -1,7 +1,7 @@
language: node_js
addons:
firefox: "39.0"
firefox: "57.0"
sudo: false
@ -10,7 +10,7 @@ before_install:
- "sh -e /etc/init.d/xvfb start"
node_js:
- '4'
- '10'
script:
- npm i

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

@ -24,7 +24,7 @@ var DIFFERENT_BROWSER_ERROR = 3005;
* OAuth Login, redirects to FxA
*/
router.get('/login', function(req, res) {
var nonce = crypto.randomBytes(32).toString('hex'); // eslint-disable-line
var nonce = crypto.randomBytes(32).toString('hex'); // eslint-disable-line
oauthFlows[nonce] = true;
req.session.state = nonce;
return res.redirect(redirectUrl('signin', nonce));