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>
This commit is contained in:
Steven Allen 2018-09-13 10:57:43 -07:00
parent 7ad12bf013
commit 2a0af78f9d

View File

@ -160,7 +160,7 @@ multihash.
}
}
out := Object{
out := &Object{
Hash: rp.Cid().String(),
Links: outLinks,
}