Noticed two things: https://github.com/Printrbot/cloud-services/blob/master/project/handler.js#L68 ```js pb.write('76E2F144D377463FBF4CB0B40753C78C' 0, 32); ``` A comma is missing https://github.com/Printrbot/cloud-services/blob/master/project/handler.js#L69-L72 ```js // project format pb.writeInt8(0,1); // project idx pb.write(project.idx, 33, 8); ``` From dissecting the binary project file, it looks like the idx is being written before the format.
Noticed two things:
https://github.com/Printrbot/cloud-services/blob/master/project/handler.js#L68
A comma is missing
https://github.com/Printrbot/cloud-services/blob/master/project/handler.js#L69-L72
From dissecting the binary project file, it looks like the idx is being written before the format.