diff --git a/CHANGELOG.md b/CHANGELOG.md index 78c6bc73..c4df3656 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ This project adheres to [Semantic Versioning](http://semver.org/). [Unpublished]: https://github.com/file-icons/atom/compare/v2.1.23...HEAD +[Unpublished] +---------------------- +### Fixed +- [[`#753`][]]: Startup breakage for users running Atom 1.23.3 + +[`#753`]: https://github.com/file-icons/atom/issues/753#issuecomment-412749410 + + + [v2.1.23] ---------------------- ### Added diff --git a/lib/service/icon-service.js b/lib/service/icon-service.js index 5c0d67ce..1ccf3050 100644 --- a/lib/service/icon-service.js +++ b/lib/service/icon-service.js @@ -25,7 +25,7 @@ class IconService{ Storage.deletePath(path); } } - }), + }) ); StrategyManager.init(); this.isReady = true; @@ -103,7 +103,7 @@ class IconService{ return file && file.icon ? file.icon.getClasses() || null : null; - }, + } }; } }