Skip to content

Commit 6e40c44

Browse files
authored
fix wrong port in log message when starting server only (#3697)
fixes #3696
1 parent 2400e20 commit 6e40c44

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ planned for 2025-04-01
3232
- [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)
3333
- [calendar] Fix arrayed symbols, #3267, again, add testcase, add testcase for #3678
3434
- [weather] Fix wrong weatherCondition name in openmeteo provider which lead to n/a icon
35+
- [core] Fix wrong port in log message when starting server only (#3696)
3536

3637
## [2.30.0] - 2025-01-01
3738

serveronly/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ const Log = require("../js/logger");
44
app.start().then((config) => {
55
const bindAddress = config.address ? config.address : "localhost";
66
const httpType = config.useHttps ? "https" : "http";
7-
Log.info(`\n>>> Ready to go! Please point your browser to: ${httpType}://${bindAddress}:${config.port} <<<`);
7+
Log.info(`\n>>> Ready to go! Please point your browser to: ${httpType}://${bindAddress}:${global.mmPort || config.port} <<<`);
88
});

0 commit comments

Comments
 (0)