diff --git a/custom_packs.json b/custom_packs.json index 2413b12..3b32b75 100644 --- a/custom_packs.json +++ b/custom_packs.json @@ -1,7 +1,7 @@ { "ams": { "Name of Atmosphère pack": "link_to_zip", - "Name of anther pack": "link_to_zip" + "Name of another pack": "link_to_zip" }, "misc": { "name of download": "link" diff --git a/source/list_download_tab.cpp b/source/list_download_tab.cpp index fd6c293..07ff050 100644 --- a/source/list_download_tab.cpp +++ b/source/list_download_tab.cpp @@ -34,13 +34,10 @@ ListDownloadTab::ListDownloadTab(const contentType type, const nlohmann::ordered } if (this->type == contentType::bootloaders) { - this->setDescription(contentType::payloads); - this->createList(contentType::payloads); - } - - if (this->type == contentType::sigpatches) { this->setDescription(contentType::hekate_ipl); this->createList(contentType::hekate_ipl); + this->setDescription(contentType::payloads); + this->createList(contentType::payloads); } }