aboutsummaryrefslogtreecommitdiff
path: root/lib/serve.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/serve.js')
-rw-r--r--lib/serve.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/serve.js b/lib/serve.js
index 5736f9b..562476d 100644
--- a/lib/serve.js
+++ b/lib/serve.js
@@ -4033,7 +4033,7 @@ Serve.prototype.composer = function (opts, cb) {
if (!canMentionAttendees) return cb(null)
if (opts.id === opts.root) gotLinks(null, links)
else pull(
- self.app.getLinks2(opts.root, 'about'),
+ self.app.getLinksBy(opts.root, 'about'),
pull.unique('key'),
self.app.unboxMessages(),
pull.collect(gotLinks)
@@ -4375,7 +4375,9 @@ Serve.prototype.aboutDiff = function (url) {
function next(rootId, msg, cb) {
pull(
- self.app.getLinks(rootId),
+ rootId === msg.value.author && !self.query.fromAny ?
+ self.app.getLinks3(rootId, msg.value.author, 'about') :
+ self.app.getLinksBy(rootId, 'about'),
pull.unique('key'),
self.app.unboxMessages(),
pull.collect(function (err, links) {