Votes on a message
bash
js
sbot links --dest {messageId} --rel vote --values
var pull = require('pull-stream')
pull(
sbot.links({ dest: messageId, rel: 'vote' }),
pull.collect(function (err, msgs) { ... })
)
Vote messages put the value and reason data in the link, so we'll get those attributes in the output of links
without including the full message value.
That's why values: true
is not set.