From ddb2f257f3f88f9a548883780406648adae38e2c Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Thu, 16 May 2024 17:46:03 -0400 Subject: [PATCH] Parse deletions per-deviceID --- libmuttonserver.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmuttonserver.go b/libmuttonserver.go index 344212c..11c94aa 100644 --- a/libmuttonserver.go +++ b/libmuttonserver.go @@ -18,7 +18,7 @@ func main() { switch args[1] { case "fetch": // print all information needed for syncing to stdout for interpretation by the client - sync.GetRemoteDataFromServer() + sync.GetRemoteDataFromServer(args[2]) case "shear": // shear an entry from the server and add it to the deletions directory deviceIDTargetLocation := strings.Split(args[2], "\x1d")