From 9d8f3deef44af4d6b7508dfe557677293d2977ce Mon Sep 17 00:00:00 2001 From: cel Date: Wed, 18 Dec 2019 21:27:01 -0500 Subject: Show id in feed names in markdown-usable way If the feed name cannot be used as a @mention but must be a [@mention](@id), show it that way, so it can be copy-pastable into new message text. --- lib/app.js | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/app.js') diff --git a/lib/app.js b/lib/app.js index 7caab05..d0ff7f4 100644 --- a/lib/app.js +++ b/lib/app.js @@ -49,6 +49,7 @@ function App(sbot, config) { || new Buffer('HT0wIYuk3OWc2FtaCfHNnakV68jSGRrjRMP9Kos7IQc=', 'base64') // sha256('peer-invites') this.devPeerInviteCap = new Buffer('pmr+IzM+4VAZgi5H5bOopXkwnzqrNussS7DtAJsfbf0=', 'base64') // sha256('peer-invites:DEVELOPMENT') this.voteBranches = !!config.voteBranches + this.copyableIds = config.copyableIds == null ? true : config.copyableIds this.hostname = (/:/.test(this.host) ? '[' + this.host + ']' : this.host) + this.port this.dir = path.join(config.path, conf.dir || 'patchfoo') -- cgit v1.2.3