瀏覽代碼

Fix OAuth2 login when no scope is defined

bubble
Stefano Travelli 9 年之前
父節點
當前提交
a5f1eeae04
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      lib/swagger-oauth.js

+ 1
- 1
lib/swagger-oauth.js 查看文件

@@ -14,8 +14,8 @@ function handleLogin() {
var defs = auths;
for(key in defs) {
var auth = defs[key];
oauth2KeyName = key;
if(auth.type === 'oauth2' && auth.scopes) {
oauth2KeyName = key;
var scope;
if(Array.isArray(auth.scopes)) {
// 1.2 support


Loading…
取消
儲存