1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-11-08 11:31:43 +00:00

added api url to constants.hpp

This commit is contained in:
flb 2021-02-06 22:00:25 +01:00
parent b2c3a316a0
commit afeff3488c
2 changed files with 2 additions and 1 deletions

View file

@ -35,6 +35,7 @@
#define CHEATS_URL_TITLES "https://github.com/HamletDuFromage/switch-cheats-db/releases/download/v1.0/titles.zip"
#define CHEATS_URL_CONTENTS "https://github.com/HamletDuFromage/switch-cheats-db/releases/download/v1.0/contents.zip"
#define LOOKUP_TABLE_URL "https://raw.githubusercontent.com/HamletDuFromage/switch-cheats-db/master/versions.json"
#define CHEATSLIPS_CHEATS_URL "https://www.cheatslips.com/api/v1/cheats/"
#define CHEATSLIPS_TOKEN_URL "https://www.cheatslips.com/api/v1/token"
#define TOKEN_PATH "/config/aio-switch-updater/token.json"
#define CHEATS_FILENAME "/config/aio-switch-updater/cheats.zip"

View file

@ -20,7 +20,7 @@ DownloadCheatsPage::DownloadCheatsPage(uint64_t tid) : AppletFrame(true, true)
if(bid != "") {
std::vector<std::string> headers = {"accept: application/json"};
json cheatsInfo = getRequest(("https://www.cheatslips.com/api/v1/cheats/" + formatApplicationId(tid) + "/" + bid).c_str(), headers);
json cheatsInfo = getRequest((CHEATSLIPS_CHEATS_URL + formatApplicationId(tid) + "/" + bid).c_str(), headers);
if(cheatsInfo.find("cheats") != cheatsInfo.end()) {
for (const auto& p : cheatsInfo["cheats"].items()) {
json cheat = p.value();