From 80435e39321a8a5aef016c2d73f0580ab05d6708 Mon Sep 17 00:00:00 2001 From: cel Date: Sun, 28 Oct 2018 14:17:41 -1000 Subject: Let About info from feeds we follow take precedence over About info from feeds we do not follow --- lib/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/app.js') diff --git a/lib/app.js b/lib/app.js index ed936ec..fa26b25 100644 --- a/lib/app.js +++ b/lib/app.js @@ -50,7 +50,6 @@ function App(sbot, config) { codeInTextareas: conf.codeInTextareas, } - this.about = new About(this, sbot.id) this.msgCache = lru(100) this.getMsg = memo({cache: this.msgCache}, getMsgWithValue, sbot) this.getMsgOoo = memo({cache: this.msgCache}, this.getMsgOoo) @@ -70,6 +69,7 @@ function App(sbot, config) { this.git = new Git(this.sbot, this.config) this.contacts = new Contacts(this.sbot) this.follows = new Follows(this.sbot, this.contacts) + this.about = new About(this, sbot.id, this.follows) this.serveSsbNpmRegistry = SsbNpmRegistry.respond(this.sbot, this.config) this.monitorBlobWants() -- cgit v1.2.3