mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
fix wrong port in log message when starting server only (#3697)
fixes #3696
This commit is contained in:
parent
2400e2045f
commit
6e40c446f4
@ -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)
|
- [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
|
- [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
|
- [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
|
## [2.30.0] - 2025-01-01
|
||||||
|
|
||||||
|
@ -4,5 +4,5 @@ const Log = require("../js/logger");
|
|||||||
app.start().then((config) => {
|
app.start().then((config) => {
|
||||||
const bindAddress = config.address ? config.address : "localhost";
|
const bindAddress = config.address ? config.address : "localhost";
|
||||||
const httpType = config.useHttps ? "https" : "http";
|
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} <<<`);
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user