Skip to content
This repository has been archived by the owner on Dec 10, 2019. It is now read-only.

Commit

Permalink
🐛 fix #149
Browse files Browse the repository at this point in the history
📝 update CHANGELOG
  • Loading branch information
jccguimaraes committed May 22, 2017
1 parent 84162b6 commit 5c083cf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [1.1.2] - 2017-05-22

### Fixed

- Bad workflow for status-bar issues ([149])(https://github.com/jccguimaraes/atom-project-viewer/issues/149).

## [1.1.1] - 2017-05-22

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/status-bar.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const map = require('./map');

const update = function _update (text) {
if (!text) { return; }
if (!statusBar.view && typeof statusBar.view.getItem !== 'function') {
if (!statusBar.view || typeof statusBar.view.getItem !== 'function') {
return;
}
const item = statusBar.view.getItem();
Expand Down

0 comments on commit 5c083cf

Please sign in to comment.