Skip to content

Commit

Permalink
Merge branch 'bug-fixes' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
ezeholz committed Oct 3, 2023
2 parents 688481a + 6dac930 commit 5431be1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion API/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ module.exports = {
modData = dataMerged.filter(m => {
return (req.params.moduleName.includes(m.identifier));
});
if (!modData) {
if (!modData.length) {
modData = dataMerged.filter(m => {
return (req.params.moduleName.includes(m.name));
});
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mmm-remote-control",
"version": "2.3.7",
"description": "This module for the MagicMirror² allows you to shutdown and configure your mirror through a web browser.",
"name": "Magic-Mirror-Module-Remote-Control",
"version": "2.3.8",
"description": "This module for the Magic Mirror allows you to shutdown and configure your mirror through a web browser.",
"repository": {
"type": "git",
"url": "git+https://github.com/jopyth/MMM-Remote-Control"
Expand All @@ -22,9 +22,9 @@
"homepage": "git+https://github.com/jopyth/MMM-Remote-Control#readme",
"dependencies": {
"body-parser": "latest",
"simple-git": "latest",
"lodash": "latest",
"node-fetch": "^2.6.9",
"node-fetch": "^2.7.0",
"simple-git": "latest",
"uuid": "^3.3.2"
}
}

0 comments on commit 5431be1

Please sign in to comment.