1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:57:35 +00:00

LibWeb: Show "x86_64" in the user agent string on x86_64 :^)

This commit is contained in:
Andreas Kling 2021-07-01 12:15:52 +02:00
parent 33260ea99b
commit 56d25d7210

View file

@ -17,7 +17,13 @@ class RequestClient;
namespace Web {
constexpr auto default_user_agent = "Mozilla/4.0 (SerenityOS; x86) LibWeb+LibJS (Not KHTML, nor Gecko) LibWeb";
#if ARCH(I386)
# define CPU_STRING "x86"
#else
# define CPU_STRING "x86_64"
#endif
constexpr auto default_user_agent = "Mozilla/4.0 (SerenityOS; " CPU_STRING ") LibWeb+LibJS (Not KHTML, nor Gecko) LibWeb";
class ResourceLoader : public Core::Object {
C_OBJECT(ResourceLoader)