From 3631b729ad62e12a4c7682199785cdfd69894ec3 Mon Sep 17 00:00:00 2001 From: Arkady <39239075+Arkady-A@users.noreply.github.com> Date: Fri, 20 Jun 2025 03:57:03 +0200 Subject: [PATCH] :art: Add DisableGoogleAnalytics field to System struct (#15097) --- kernel/conf/system.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/kernel/conf/system.go b/kernel/conf/system.go index 52c910688..e1d6eb39a 100644 --- a/kernel/conf/system.go +++ b/kernel/conf/system.go @@ -51,11 +51,12 @@ type System struct { func NewSystem() *System { return &System{ - ID: util.GetDeviceID(), - Name: util.GetDeviceName(), - KernelVersion: util.Ver, - NetworkProxy: &NetworkProxy{}, - DownloadInstallPkg: true, + ID: util.GetDeviceID(), + Name: util.GetDeviceName(), + KernelVersion: util.Ver, + NetworkProxy: &NetworkProxy{}, + DownloadInstallPkg: true, + DisableGoogleAnalytics: true, } }