diff --git a/source/api/mod.cpp b/source/api/mod.cpp index 5959a1d..5f36c21 100644 --- a/source/api/mod.cpp +++ b/source/api/mod.cpp @@ -86,7 +86,7 @@ File::File(const std::string &name, const int &size, const std::string &url, con bool File::findRomfsRecursive(const nlohmann::json& obj) { for (const auto& item : obj.items()) { - if (item.key() == "romfs" || item.key() == "exefs"){ + if (item.key() == "romfs" || item.key() == "exefs" || item.key() == "exefs_patches"){ brls::Logger::debug("found romfs"); return true; } @@ -180,4 +180,4 @@ void ModList::setCategory(const Category& category) { this->currentCategory = category; currentPage = 1; updatePage(); -} \ No newline at end of file +}