From 45431e29f15a37c38bef306fec12ff219b737776 Mon Sep 17 00:00:00 2001 From: neru Date: Sun, 12 Apr 2026 13:12:00 -0300 Subject: [PATCH] fix: remove repeated statement --- src/unlocker/spoofing.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/unlocker/spoofing.cpp b/src/unlocker/spoofing.cpp index 2c673b3..371533b 100644 --- a/src/unlocker/spoofing.cpp +++ b/src/unlocker/spoofing.cpp @@ -617,7 +617,6 @@ void Spoofer::serverResponseHandler(const std::string& url, std::string& body, s Log::verbose("BHVR api res @ {}", url); #endif - if (url.find("api/v1/dbd-character-data/get-all") != std::string::npos) return onGetAll(body); if (url.find("api/v1/dbd-character-data/get-all") != std::string::npos) return onGetAll(body); if (url.find("api/v1/dbd-inventories/all") != std::string::npos) return onInventoryAll(body); if (url.find("/api/v1/messages/listV2") != std::string::npos) return onMessageList(body);