mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-16 15:41:13 +02:00
2022-11-29 Fred Gleason <fredg@paravelsystems.com>
* Added a 'SuppressRdcatchMeterUpdates=' directive to '[Hacks]' section of rd.conf(5). * Fixed a regression in the RDCatch subsystem that caused remote deck indication to break. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -238,8 +238,8 @@ void MainObject::newConnectionData()
|
||||
void MainObject::notificationReceivedData(const QString &msg,
|
||||
const QHostAddress &addr)
|
||||
{
|
||||
QStringList f0=msg.split(msg,QString::SkipEmptyParts);
|
||||
if(msg.at(0)=="NOTIFY") {
|
||||
QStringList f0=msg.split(" ",QString::SkipEmptyParts);
|
||||
if(f0.at(0)=="NOTIFY") {
|
||||
RDNotification *notify=new RDNotification();
|
||||
if(!notify->read(msg)) {
|
||||
rda->syslog(LOG_INFO,"invalid notification received from %s",
|
||||
@@ -251,7 +251,7 @@ void MainObject::notificationReceivedData(const QString &msg,
|
||||
BroadcastCommand("ON "+msg+"!");
|
||||
delete notify;
|
||||
}
|
||||
if(msg.at(0)=="CATCH") {
|
||||
if(f0.at(0)=="CATCH") {
|
||||
RDCatchEvent *evt=new RDCatchEvent();
|
||||
if(!evt->read(msg)) {
|
||||
rda->syslog(LOG_INFO,"invalid catch event received from %s",
|
||||
|
Reference in New Issue
Block a user