fix device closing

This commit is contained in:
vaxerski 2022-08-28 10:20:26 +02:00
parent 52c0ba544c
commit 5d9d55a245
1 changed files with 1 additions and 1 deletions

View File

@ -938,7 +938,7 @@ void CConfigManager::parseLine(std::string& line) {
const auto LASTSEP = currentCategory.find_last_of(':');
if (LASTSEP == std::string::npos)
if (LASTSEP == std::string::npos || currentCategory.contains("device:"))
currentCategory = "";
else
currentCategory = currentCategory.substr(0, LASTSEP);