Hi @karsten13 @requiemmg,
this is a MMM-Remote-Control Bug: https://github.com/Jopyth/MMM-Remote-Control/issues/267
Hi @karsten13 @requiemmg,
this is a MMM-Remote-Control Bug: https://github.com/Jopyth/MMM-Remote-Control/issues/267
thx @karsten13, I’ll check that for both modules
@requiemmg whats your MagicMirror version?
@jo-0 in the modules/MMM-Jast folder try to execute git reset --hard
first and continue with git pull
and npm install --only=production
in a second step.
@jo-0 you have useGrouping property twice in your settings. As true and as false. remove the ‚useGrouping: false‘ and it will work
@rikko14 was there a message saying something like „merge conflict with package-lock.json“?
@jo-0 said in [MMM-JaST] Just another Stock Ticker (new: version 2.x):
@jalibu said in [MMM-JaST] Just another Stock Ticker (new: version 2.x):
useGrouping: true,
it does not work.
I run scroll: “none”
please PN me your module config
Hi @jo-0,
MMM-JaST follows the formatting rules for your locale which is set in your config.js
The comma as decimal separator is common for German locale for example (de-DE) where the dot as decimal separator is common for English locales (en-GB)
var config = {
..
language: "de",
locale: "de-DE",
timeFormat: 24,
units: "metric",
modules: [...]
...
}
Keep in mind that locale settings can affect all modules. MMM-JaST has an option to override global platform locale settings. Just add the following to your Jast module config:
modules: [
{
module: "MMM-Jast",
config: {
...
locale: "de-DE", // or any other desired locale for number formatting
...
}
}
]
@1blaunitrox said in Module with HTTP Request:
Can I change it to 8080?
No, because it is blocked by MagicMirror ;-)
But what sdetweil says is of course true and on closer inspection this is the main problem in your code. Welcome to the world of asynchronous JavaScript :-)