Skip to content

Commit

Permalink
Fix chia version being removed periodically
Browse files Browse the repository at this point in the history
  • Loading branch information
felixbrucker committed Sep 5, 2023
1 parent b787f84 commit 429a52f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.18.1 / 2023-09-05
==================

* Fixes a bug which caused the chia version to be removed periodically.

1.18.0 / 2023-09-05
==================

Expand Down
3 changes: 2 additions & 1 deletion lib/service/stats-collection.js
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,8 @@ class StatsCollection {

async updateRunningServices() {
// Ignore the plotter service here as it is only running when plotting
await Promise.all(this.enabledServices.filter(service => service !== plotterService).map(async service => {
const applicableServices = this.enabledServices.filter(service => service !== plotterService && service !== daemonService)
await Promise.all(applicableServices.map(async service => {
let isRunning = await this.daemonApiClient.isServiceRunning(constants.SERVICE()[service]);
if (isRunning && service === walletService && !this.walletIsLoggedIn) {
const publicKeys = await this.walletApiClient.getPublicKeys();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chia-dashboard-satellite",
"version": "1.18.0",
"version": "1.18.1",
"repository": "https://github.com/felixbrucker/chia-dashboard-satellite.git",
"bugs": "https://github.com/felixbrucker/chia-dashboard-satellite/issues",
"license": "GPL-3.0",
Expand Down

0 comments on commit 429a52f

Please sign in to comment.