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
Notes: sideshowbarker 2024-07-18 11:10:33 +09:00

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)