From 29b2a27ffc4888b10d9e5547bf040a28eb17a984 Mon Sep 17 00:00:00 2001 From: Janez T Date: Tue, 10 Dec 2024 13:48:32 +0100 Subject: [PATCH] Fix JSON field name for Linux OS version in ReportingDevice struct --- team/report.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/team/report.go b/team/report.go index 4882215..6b98817 100644 --- a/team/report.go +++ b/team/report.go @@ -20,7 +20,7 @@ type ReportingDevice struct { MachineUUID string `json:"machineUUID"` MachineName string `json:"machineName"` Auth string `json:"auth"` - LinuxOSVersion string `json:"LinuxOSVersion"` + LinuxOSVersion string `json:"linuxOSVersion"` ModelName string `json:"modelName"` ModelSerial string `json:"modelSerial"` }