fix: add new bloodweb url
Build / build (push) Successful in 3m43s

This commit is contained in:
2026-04-29 11:55:05 -03:00
parent ef0d19e659
commit 4f0ae22d87
+2 -2
View File
@@ -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);