Skip to content

Commit

Permalink
Merge pull request #30 from AngefloMusic/bug/configuration_typo
Browse files Browse the repository at this point in the history
fixed typo in getting configuration for SSL
  • Loading branch information
erichbehrens authored Oct 12, 2018
2 parents 8c84ae9 + 3bbb149 commit e9609db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async function getPullRequests(context, showError) {
// configure the URL settings
const url = getEndpointUrl(vscode.workspace.getConfiguration('pullRequestMonitor').get('githubEnterpriseUrl'));
// configure SSL
const allowUnsafeSSL = vscode.workspace.getConfiguration('PullRequestMonitor').get('allowUnsafeSSL');
const allowUnsafeSSL = vscode.workspace.getConfiguration('pullRequestMonitor').get('allowUnsafeSSL');
const updatedPullRequests = await loadPullRequests(context.globalState.get('token'), { mode, showMerged, showClosed, repository, showError, count, url, allowUnsafeSSL });
if (updatedPullRequests.code === 401) {
refreshButton.command = 'PullRequestMonitor.setToken';
Expand Down

0 comments on commit e9609db

Please sign in to comment.