Skip to content

Commit

Permalink
Fixed issue with selecting oauth version
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasBomholtz committed Mar 20, 2023
1 parent 0b15a31 commit 841bf0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/util/questions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,8 +349,8 @@ class Questions {
{
name: 'oauth_version',
type: 'select' as const,
choices: [{ title: '1.0' }, { title: '2.0' }],
initial: external.oauth_version || '1.0',
choices: [{ title: '1.0', value: '1.0' }, { title: '2.0', value: '2.0' }],
initial: external.oauth_version === '2.0' ? 1 : 0,
message: 'Version:',
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/util/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const VERSION = '2.0.15';
const VERSION = '2.0.16';
export { VERSION };

0 comments on commit 841bf0b

Please sign in to comment.