From 2a0a274898e8fbae1d37337b50d3b13d70d0f9ae Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 4 Oct 2022 15:26:18 +0200 Subject: [PATCH] LibWeb: Identify as "Ladybird" instead of "Browser" Here's a small step towards integrating Ladybird and Browser. We now identify ourselves as "Ladybird" to websites. --- Userland/Libraries/LibWeb/Loader/ResourceLoader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/Loader/ResourceLoader.h b/Userland/Libraries/LibWeb/Loader/ResourceLoader.h index cfffa4a47f..0c94b9ee2e 100644 --- a/Userland/Libraries/LibWeb/Loader/ResourceLoader.h +++ b/Userland/Libraries/LibWeb/Loader/ResourceLoader.h @@ -44,7 +44,7 @@ namespace Web { # error Unknown OS #endif -constexpr auto default_user_agent = "Mozilla/5.0 (" OS_STRING "; " CPU_STRING ") LibWeb+LibJS/1.0 Browser/1.0"; +constexpr auto default_user_agent = "Mozilla/5.0 (" OS_STRING "; " CPU_STRING ") LibWeb+LibJS/1.0 Ladybird/1.0"; class ResourceLoaderConnectorRequest : public RefCounted { public: