From 4f0ae22d870ce44d205ad5806d44d46434090198 Mon Sep 17 00:00:00 2001 From: neru Date: Wed, 29 Apr 2026 11:55:05 -0300 Subject: [PATCH] fix: add new bloodweb url --- src/unlocker/spoofing.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/unlocker/spoofing.cpp b/src/unlocker/spoofing.cpp index ad8a69b..06c98aa 100644 --- a/src/unlocker/spoofing.cpp +++ b/src/unlocker/spoofing.cpp @@ -767,7 +767,7 @@ void Spoofer::serverResponseHandler(const std::string& url, std::string& body, s if (url.ends_with("api/v1/dbd-character-data/get-all")) return onGetAll(body); - if (url.ends_with("api/v1/dbd-character-data/bloodweb") || + if (url.ends_with("api/v1/dbd-character-data/bloodweb") || url.ends_with("api/v1/dbd-character-data/bloodweb/v2") || url.ends_with("api/v1/dbd-character-data/bulk-spending-bloodweb")) return onBloodweb(body, respHeaders); @@ -781,7 +781,7 @@ void Spoofer::clientRequestHandler(const std::string& url, std::string& body, st if (url.ends_with("api/v1/dbd-character-data/get-all")) return onGetAllClient(body); - if (url.ends_with("api/v1/dbd-character-data/bloodweb") || + if (url.ends_with("api/v1/dbd-character-data/bloodweb") || url.ends_with("api/v1/dbd-character-data/bloodweb/v2") || url.ends_with("api/v1/dbd-character-data/bulk-spending-bloodweb")) return onBloodwebClient(body);