Skip to content

Commit

Permalink
fix wrong port in log message when starting server only (MagicMirrorO…
Browse files Browse the repository at this point in the history
  • Loading branch information
khassel authored Jan 14, 2025
1 parent 2400e20 commit 6e40c44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ planned for 2025-04-01
- [tests] Electron tests: Fixes for running under new github image ubuntu-24.04, replace xserver with labwc, running under xserver and labwc depending on env variable WAYLAND_DISPLAY is set (#3676)
- [calendar] Fix arrayed symbols, #3267, again, add testcase, add testcase for #3678
- [weather] Fix wrong weatherCondition name in openmeteo provider which lead to n/a icon
- [core] Fix wrong port in log message when starting server only (#3696)

## [2.30.0] - 2025-01-01

Expand Down
2 changes: 1 addition & 1 deletion serveronly/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ const Log = require("../js/logger");
app.start().then((config) => {
const bindAddress = config.address ? config.address : "localhost";
const httpType = config.useHttps ? "https" : "http";
Log.info(`\n>>> Ready to go! Please point your browser to: ${httpType}://${bindAddress}:${config.port} <<<`);
Log.info(`\n>>> Ready to go! Please point your browser to: ${httpType}://${bindAddress}:${global.mmPort || config.port} <<<`);
});

0 comments on commit 6e40c44

Please sign in to comment.