diff --git a/CHANGELOG.md b/CHANGELOG.md index f9ef5c18..b3d7f249 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,7 +39,8 @@ _This release is scheduled to be released on 2023-04-01._ - Fix message display with HTML code into alert module (#2828) - Fix typo into french translation - Yr wind direction is no longer inverted -- The wind direction arrow now points in the direction the wind is flowing, not into the wind. +- Fix async node_helper stopping electron start (#2487) +- The wind direction arrow now points in the direction the wind is flowing, not into the wind (#3019) ## [2.22.0] - 2023-01-01 diff --git a/js/app.js b/js/app.js index 293551f1..2f9e0b49 100644 --- a/js/app.js +++ b/js/app.js @@ -257,11 +257,12 @@ function App() { }); Log.log("Sockets connected & modules started ..."); - if (typeof callback === "function") { - callback(config); - } }); }); + + if (typeof callback === "function") { + callback(config); + } }); };