aboutsummaryrefslogtreecommitdiff
path: root/lib/about.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/about.js')
-rw-r--r--lib/about.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/about.js b/lib/about.js
index fde5e04..1d2c0ea 100644
--- a/lib/about.js
+++ b/lib/about.js
@@ -20,8 +20,8 @@ About.prototype.createAboutOpStream = function (id) {
&& key !== 'type'
&& key !== 'recps'
}).map(function (key) {
- var value = c[key]
- if (u.isRef(value)) value = {link: value}
+ var value = u.linkDest(c[key])
+ // if (u.isRef(value)) value = {link: value}
return {
id: msg.key,
author: msg.value.author,
@@ -47,7 +47,7 @@ About.prototype.createAboutStreams = function (id) {
scalars: pull(
ops,
pull.unique(function (op) {
- return op.author + '-' + op.prop + '-' + (op.value ? op.value.link : '')
+ return op.author + '-' + op.prop + '-'
}),
pull.filter(function (op) {
return !op.remove