diff options
Diffstat (limited to 'Userland/Services/ProtocolServer/HttpProtocol.cpp')
-rw-r--r-- | Userland/Services/ProtocolServer/HttpProtocol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/ProtocolServer/HttpProtocol.cpp b/Userland/Services/ProtocolServer/HttpProtocol.cpp index 57df8be5db..f4e9658b51 100644 --- a/Userland/Services/ProtocolServer/HttpProtocol.cpp +++ b/Userland/Services/ProtocolServer/HttpProtocol.cpp @@ -46,7 +46,7 @@ HttpProtocol::HttpProtocol() OwnPtr<Download> HttpProtocol::start_download(ClientConnection& client, const String& method, const URL& url, const HashMap<String, String>& headers, ReadonlyBytes body) { - return Detail::start_download(AK::Badge<HttpProtocol> {}, client, method, url, headers, body, get_pipe_for_download()); + return Detail::start_download(Badge<HttpProtocol> {}, client, method, url, headers, body, get_pipe_for_download()); } } |