summaryrefslogtreecommitdiff
path: root/include/http_utility.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/http_utility.hpp')
-rw-r--r--include/http_utility.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/http_utility.hpp b/include/http_utility.hpp
index 2fd5e14016..4f430aeb8e 100644
--- a/include/http_utility.hpp
+++ b/include/http_utility.hpp
@@ -78,8 +78,8 @@ inline ContentType
}
const auto* knownContentType = std::ranges::find_if(
contentTypes, [encoding](const ContentTypePair& pair) {
- return pair.contentTypeString == encoding;
- });
+ return pair.contentTypeString == encoding;
+ });
if (knownContentType == contentTypes.end())
{