From 25d628fca314aebb25e3976f006cc96629a3d780 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Wed, 24 Jul 2019 13:01:12 -0500 Subject: revert the current unfinished chat implementation --- app/javascript/flavours/glitch/reducers/compose.js | 8 -------- 1 file changed, 8 deletions(-) (limited to 'app/javascript/flavours/glitch/reducers/compose.js') diff --git a/app/javascript/flavours/glitch/reducers/compose.js b/app/javascript/flavours/glitch/reducers/compose.js index 8747d51f5..43876e450 100644 --- a/app/javascript/flavours/glitch/reducers/compose.js +++ b/app/javascript/flavours/glitch/reducers/compose.js @@ -116,10 +116,6 @@ function statusToTextMentions(state, status) { set = set.add(`@${status.getIn(['account', 'acct'])} `); } - set = set.union(status.get('tags').filter( - tag => tag.get('name') && tag.get('name').startsWith("chat.") - ).map(tag => `#${tag.get('name')} `)); - return set.union(status.get('mentions').filterNot(mention => mention.get('id') === me).map(mention => `@${mention.get('acct')} `)).join(''); }; @@ -130,10 +126,6 @@ function apiStatusToTextMentions (state, status) { set = set.add(`@${status.account.acct} `); } - set = set.union(status.tags.filter( - tag => tag.name && tag.name.startsWith("chat.") - ).map(tag => `#${tag.name} `)); - return set.union(status.mentions.filter( mention => mention.id !== me ).map( -- cgit