From e6d8c6dbfeb3b643d42611927a7dde98fbe4ca8e Mon Sep 17 00:00:00 2001 From: Krystie Date: Sun, 10 May 2026 02:33:40 -0700 Subject: [PATCH] Fix REST path parsing redeclarations --- src/rest.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/rest.cpp b/src/rest.cpp index d4334fe..294052c 100644 --- a/src/rest.cpp +++ b/src/rest.cpp @@ -147,11 +147,10 @@ static void ParseRESTPath(const string& strURI, vector& parts, map pairs; auto pairs = SplitString(queryString, '&'); for (size_t i = 0; i < pairs.size(); i++) { size_t eq = pairs[i].find('=');