Skip to content
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.

Commit

Permalink
fix: undefined spec at authentication provider
Browse files Browse the repository at this point in the history
  • Loading branch information
JamilOmar committed Nov 10, 2019
1 parent 0b7f1a7 commit 9a57ae1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/providers/authentication.provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ export class AuthenticateActionProvider implements Provider<AuthenticateFn> {
if (params) {
for (let i = 0; i < args.length; ++i) {
const spec = params[i] as ParameterObject;
if (!spec) continue;
const paramIn = spec.in;
switch (paramIn) {
case 'path':
Expand Down

0 comments on commit 9a57ae1

Please sign in to comment.