mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-17 06:32:36 +02:00
2018-08-25 Patrick Linstruth <patrick@deltecent.com>
* Fixed a regression in rdservice(8) by removing quotation marks from rdimport(1) '--add-scheduler-code' argument that broke dropboxes.
This commit is contained in:
parent
644ebae7d7
commit
501aa42325
@ -17527,3 +17527,6 @@
|
||||
2018-08-25 Patrick Linstruth <patrick@deltecent.com>
|
||||
* Fixed a regression in rdcatchd(1) to change location
|
||||
of rdcatchd(1) from 'bin/rdcatchd' to 'sbin/rdcatchd'.
|
||||
2018-08-25 Patrick Linstruth <patrick@deltecent.com>
|
||||
* Fixed a regression in rdservice(8) by removing quotation marks
|
||||
from rdimport(1) '--add-scheduler-code' argument that broke dropboxes.
|
||||
|
@ -170,8 +170,8 @@ bool MainObject::StartDropboxes(QString *err_msg)
|
||||
QString().sprintf("DROPBOX_ID=%d",q->value(0).toInt());
|
||||
q1=new RDSqlQuery(sql);
|
||||
while(q1->next()) {
|
||||
args.push_back(QString().sprintf("--add-scheduler-code=\"")+
|
||||
q1->value(0).toString()+"\"");
|
||||
args.push_back(QString().sprintf("--add-scheduler-code=")+
|
||||
q1->value(0).toString()+"");
|
||||
}
|
||||
delete q1;
|
||||
args.push_back(QString().sprintf("--normalization-level=%d",
|
||||
|
Loading…
x
Reference in New Issue
Block a user