mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-12-22 20:31:14 +00:00
libstrat: correct firmware comparison in meta database builder
This commit is contained in:
parent
f7f284e5c0
commit
2a5d1572e1
1 changed files with 1 additions and 1 deletions
|
@ -275,7 +275,7 @@ namespace ams::ncm {
|
|||
}
|
||||
|
||||
Result ContentManagerImpl::BuildContentMetaDatabase(StorageId storage_id) {
|
||||
if (hos::GetVersion() <= hos::Version_4_0_0) {
|
||||
if (hos::GetVersion() < hos::Version_5_0_0) {
|
||||
/* Temporarily activate the database. */
|
||||
R_TRY(this->ActivateContentMetaDatabase(storage_id));
|
||||
ON_SCOPE_EXIT { this->InactivateContentMetaDatabase(storage_id); };
|
||||
|
|
Loading…
Reference in a new issue