fix exec as well on startup

This commit is contained in:
vaxerski 2022-04-12 20:23:10 +02:00
parent 17f63bf3e8
commit c68eaafd16

View file

@ -259,7 +259,11 @@ void CConfigManager::parseLine(std::string& line) {
const auto VALUE = line.substr(EQUALSPLACE + 1);
if (COMMAND == "exec") {
handleRawExec(COMMAND, VALUE);
if (isFirstLaunch) {
firstExecRequests.push_back(VALUE);
} else {
handleRawExec(COMMAND, VALUE);
}
return;
} else if (COMMAND == "exec-once") {
if (isFirstLaunch) {