diff --git a/ChangeLog b/ChangeLog index 7172890e..edb2ca64 100644 --- a/ChangeLog +++ b/ChangeLog @@ -17825,3 +17825,6 @@ * Added play/stop buttons to cart list in rdlibrary(1) 2018-10-17 Patrick Linstruth * Added ability to run macros from cart list view in rdlibrary(1) +2018-10-17 Patrick Linstruth + * Fixed bug in rdservice(8) where local maintence process was started + with RDSERVICE_SYSTEMMAINT_ID instead of RDSERVICE_LOCALMAINT_ID. diff --git a/rdservice/maint_routines.cpp b/rdservice/maint_routines.cpp index 75b1e30e..8f5c3cd3 100644 --- a/rdservice/maint_routines.cpp +++ b/rdservice/maint_routines.cpp @@ -93,7 +93,7 @@ void MainObject::RunSystemMaintRoutine() void MainObject::RunLocalMaintRoutine() { - RunEphemeralProcess(RDSERVICE_SYSTEMMAINT_ID, + RunEphemeralProcess(RDSERVICE_LOCALMAINT_ID, QString(RD_PREFIX)+"/bin/rdmaint",QStringList()); rda->log(RDConfig::LogInfo,"ran local maintenance routines");