diff --git a/Userland/Libraries/LibTimeZone/TimeZone.cpp b/Userland/Libraries/LibTimeZone/TimeZone.cpp index 03870f067d34f74d34ee25be40d2043fe283612b..31c208827c10dc54f395f6b60111806edc80b3a4 100644 --- a/Userland/Libraries/LibTimeZone/TimeZone.cpp +++ b/Userland/Libraries/LibTimeZone/TimeZone.cpp @@ -129,7 +129,8 @@ StringView current_time_zone() dbgln_if(TIME_ZONE_DEBUG, "Could not read the /etc/localtime link: {}", strerror(errno)); } - return "UTC"sv; + // Read the system timezone file /etc/timezone + return system_time_zone(); #endif }