From f583cefb417b39c0ac67ad8c6a62e99634cc8cc7 Mon Sep 17 00:00:00 2001 From: flb Date: Tue, 6 Sep 2022 21:03:45 +0200 Subject: [PATCH] restore hekate_ipl download --- custom_packs.json | 2 +- source/list_download_tab.cpp | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) 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); } }