From cdf34edd12d5b7f30f0ee9e581b56db6841e4ab2 Mon Sep 17 00:00:00 2001 From: Dan Lamppa Date: Fri, 17 Jul 2020 10:53:38 -0500 Subject: [PATCH] When a QueueCommandQueued is marshaled in MarshalQueuedCommand, the QueueCommandQueued.DeviceUDID property rather than the CommandUUID property was copied to the protobuf CommandUuid property. Now the CommandUUID property is copied to the CommandUuid property. (#690) Co-authored-by: Dan Lamppa --- platform/queue/command_queued.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/queue/command_queued.go b/platform/queue/command_queued.go index 33fb504e..2d8ad98c 100644 --- a/platform/queue/command_queued.go +++ b/platform/queue/command_queued.go @@ -18,7 +18,7 @@ func MarshalQueuedCommand(cq *QueueCommandQueued) ([]byte, error) { } return proto.Marshal(&commandqueued.CommandQueued{ DeviceUdid: cq.DeviceUDID, - CommandUuid: cq.DeviceUDID, + CommandUuid: cq.CommandUUID, }) }