Skip to content

Commit

Permalink
v 0.15.3
Browse files Browse the repository at this point in the history
- time not being tracked on Jira
  • Loading branch information
gioboa committed Mar 13, 2019
1 parent 023ce42 commit ec17bcb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 32 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.15.3

### Bug Fixes

- time not being tracked on Jira

## 0.15.2

### Bug Fixes
Expand Down
31 changes: 1 addition & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jira-plugin",
"displayName": "Jira Plugin",
"description": "Jira integration for vscode",
"version": "0.15.2",
"version": "0.15.3",
"publisher": "gioboa",
"icon": "images/icons/icon.png",
"galleryBanner": {
Expand Down
2 changes: 1 addition & 1 deletion src/services/configuration.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default class ConfigurationService {
if (!this.settings) {
return fallbackValue;
}
return this.settings[entry] || fallbackValue;
return this.settings.hasOwnProperty(entry) && this.settings[entry] !== undefined ? this.settings[entry] : fallbackValue;
}

// used for set only one setting
Expand Down

0 comments on commit ec17bcb

Please sign in to comment.