express-battlenet-oauth
Advanced tools
Comparing version 0.0.3 to 0.0.4
@@ -36,4 +36,4 @@ var qs = require('querystring'); | ||
try { | ||
scope = req.query.state.split(':').length ? state.split(':')[0] : req.app.get('BNET_SCOPE'); | ||
region = req.query.state.split(':').length ? state.split(':')[1] : req.app.get('BNET_REGION'); | ||
scope = req.query.state.split(':').length ? req.query.state.split(':')[0] : req.app.get('BNET_SCOPE'); | ||
region = req.query.state.split(':').length ? req.query.state.split(':')[1] : req.app.get('BNET_REGION'); | ||
@@ -40,0 +40,0 @@ } catch(e){ |
{ | ||
"name": "express-battlenet-oauth", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "OAuth Authentication for Battle.net (World of Warcraft, Starcraft 2 profiles) for ExpressJS", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
9080