diff --git a/ChangeLog b/ChangeLog index 74165eab..ceed35ca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -23927,3 +23927,6 @@ 2023-01-18 Fred Gleason * Corrected errors in the WebAPI documentation regarding the argument type of the 'LINE_TIME_TYPE' field in the 'SaveLog' call. +2023-01-18 Fred Gleason + * Fixed a bug in rdservice(8) that could cause dropboxes to be + instantiated with invalid segue level values. diff --git a/rdservice/startup.cpp b/rdservice/startup.cpp index 72aed5af..b88a014c 100644 --- a/rdservice/startup.cpp +++ b/rdservice/startup.cpp @@ -279,7 +279,7 @@ bool MainObject::StartDropboxes(QString *err_msg) } if(q->value(22).toInt()<1) { args.push_back(QString::asprintf("--segue-level=%d", - q->value(22).toInt())); + q->value(22).toInt()/100)); args.push_back(QString::asprintf("--segue-length=%u", q->value(23).toUInt())); }