BUG correction: make rootfs RO only in saveRequest in CollectionInfo::Save

Signed-off-by: Vincent-FK <vincent.buso@funkey-project.com>
This commit is contained in:
Vincent-FK 2020-11-10 15:23:55 +01:00
parent a2315cb143
commit 4464de67e1

View File

@ -142,9 +142,9 @@ bool CollectionInfo::Save()
Logger::write(Logger::ZONE_ERROR, "Collection", "Save failed: " + file);
retval = false;
}
}
Utils::rootfsReadOnly();
Utils::rootfsReadOnly();
}
return retval;
}