🎨 Add DisableGoogleAnalytics field to System struct (#15097)

This commit is contained in:
Arkady 2025-06-20 03:57:03 +02:00 committed by GitHub
parent 9f5aca1e58
commit 3631b729ad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,
}
}