@cryptotaxi247 / kubo / commits / 2a0af78f9

fix output of object command

We're expecting a pointer, not a value. This works in daemon mode but not in offline mode. fixes #5458 License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>

Steven Allen committed Sep 13, 2018 at 10:57 UTC 2a0af78f9d9ecdcf253fe351cbc3db7a102f7f83
1 file changed +1 -1
core/commands/object/object.go
+1 -1
@@ -160,7 +160,7 @@ multihash.
160 }
161 }
162
163 - out := Object{
163 + out := &Object{
164 Hash: rp.Cid().String(),
165 Links: outLinks,
166 }