mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-08-02 08:59:33 +02:00
2019-08-05 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdairplay(1) where only the first log machine set to 'load specified log' would do so.
This commit is contained in:
parent
ec550b5530
commit
7869c62229
@ -18895,3 +18895,6 @@
|
||||
Ports' ['JC'] and 'Disconnect Jack Ports' ['JD'] RMLs.
|
||||
2019-08-05 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Incremented the package version 3.0.3.
|
||||
2019-08-05 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug in rdairplay(1) where only the first log machine
|
||||
set to 'load specified log' would do so.
|
||||
|
@ -830,10 +830,6 @@ void MainWidget::ripcConnectedData(bool state)
|
||||
QString sql;
|
||||
RDSqlQuery *q;
|
||||
RDMacro rml;
|
||||
rml.setRole(RDMacro::Cmd);
|
||||
addr.setAddress("127.0.0.1");
|
||||
rml.setAddress(addr);
|
||||
rml.setEchoRequested(false);
|
||||
|
||||
//
|
||||
// Check Channel Assignments
|
||||
@ -902,6 +898,11 @@ void MainWidget::ripcConnectedData(bool state)
|
||||
"NAME=\""+RDEscapeString(air_start_logname[i])+"\"";
|
||||
q=new RDSqlQuery(sql);
|
||||
if(q->first()) {
|
||||
rml.clear();
|
||||
rml.setRole(RDMacro::Cmd);
|
||||
addr.setAddress("127.0.0.1");
|
||||
rml.setAddress(addr);
|
||||
rml.setEchoRequested(false);
|
||||
rml.setCommand(RDMacro::LL); // Load Log
|
||||
rml.addArg(i+1);
|
||||
rml.addArg(air_start_logname[i]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user