From b71aaf656860decf864b55ca9f2e340df5867ca9 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Thu, 30 May 2024 22:15:51 -0400 Subject: [PATCH] No longer unnecessarily send client OS type to server --- src/sync/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sync/client.go b/src/sync/client.go index ec2138c..cf4f0b4 100644 --- a/src/sync/client.go +++ b/src/sync/client.go @@ -130,7 +130,7 @@ func getRemoteDataFromClient(manualSync bool) (map[string]int64, []string, []str os.Exit(0) // exit silently if the sync job was called automatically, as the user may just be in offline mode } } - output := GetSSHOutput("libmuttonserver fetch "+clientDeviceID[0].Name()+" "+strconv.FormatBool(backend.IsWindows), manualSync) + output := GetSSHOutput("libmuttonserver fetch "+clientDeviceID[0].Name(), manualSync) // split output into slice based on occurrences of "\x1d" outputSlice := strings.Split(output, "\x1d")