Skip to content

Commit

Permalink
Correct some instances of Multicast to Multisync #2016
Browse files Browse the repository at this point in the history
  • Loading branch information
darylc committed Feb 2, 2025
1 parent 8734086 commit e91265f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions www/js/fpp.js
Original file line number Diff line number Diff line change
Expand Up @@ -6982,7 +6982,7 @@ function CommandSelectChanged (
line += "style='display:none'";
}
line +=
"><td>Multicast:</td><td><input type='checkbox' id='" +
"><td>Multisync:</td><td><input type='checkbox' id='" +
tblCommand +
"_multisync' class='arg_multisync' onChange='OnMultisyncChanged(this, \"" +
tblCommand +
Expand Down Expand Up @@ -7962,14 +7962,14 @@ function FillInCommandTemplate (row, data) {
'<br>';

if (data.hasOwnProperty('multisyncCommand')) {
tip += '<b>Multicast: </b>';
tip += '<b>Multisync: </b>';
if (data.multisyncCommand) tip += 'Yes';
else tip += 'No';

tip += '<br>';

if (data.hasOwnProperty('multisyncHosts')) {
tip += '<b>Multicast Hosts: </b>' + data.multisyncHosts + '<br>';
tip += '<b>Multisync Hosts: </b>' + data.multisyncHosts + '<br>';
}
}
var args = commandListByName[data.command]['args'];
Expand Down
2 changes: 1 addition & 1 deletion www/playlistEntryTypes.json
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@
},
"multisyncCommand": {
"name": "multisyncCommand",
"description": "Multicast",
"description": "Multisync",
"type": "bool",
"optional": true,
"hidden": true
Expand Down

0 comments on commit e91265f

Please sign in to comment.