Skip to content

Commit 5431be1

Browse files
committed
Merge branch 'bug-fixes' into develop
2 parents 688481a + 6dac930 commit 5431be1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

API/api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ module.exports = {
355355
modData = dataMerged.filter(m => {
356356
return (req.params.moduleName.includes(m.identifier));
357357
});
358-
if (!modData) {
358+
if (!modData.length) {
359359
modData = dataMerged.filter(m => {
360360
return (req.params.moduleName.includes(m.name));
361361
});

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "mmm-remote-control",
3-
"version": "2.3.7",
4-
"description": "This module for the MagicMirror² allows you to shutdown and configure your mirror through a web browser.",
2+
"name": "Magic-Mirror-Module-Remote-Control",
3+
"version": "2.3.8",
4+
"description": "This module for the Magic Mirror allows you to shutdown and configure your mirror through a web browser.",
55
"repository": {
66
"type": "git",
77
"url": "git+https://github.com/jopyth/MMM-Remote-Control"
@@ -22,9 +22,9 @@
2222
"homepage": "git+https://github.com/jopyth/MMM-Remote-Control#readme",
2323
"dependencies": {
2424
"body-parser": "latest",
25-
"simple-git": "latest",
2625
"lodash": "latest",
27-
"node-fetch": "^2.6.9",
26+
"node-fetch": "^2.7.0",
27+
"simple-git": "latest",
2828
"uuid": "^3.3.2"
2929
}
3030
}

0 commit comments

Comments
 (0)