about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/actions/timelines.js
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2020-05-28 14:57:20 +0200
committerThibG <thib@sitedethib.com>2020-05-28 15:21:16 +0200
commite8714530a4173500a503452e9a9b5755156f14cd (patch)
tree15c7808d23a00d35fe3b15fcd3e7382c51032cf2 /app/javascript/flavours/glitch/actions/timelines.js
parent7a74e46b770d4120890daafee51b36d1a3fa2db9 (diff)
Fix local-only hashtag columns
Diffstat (limited to 'app/javascript/flavours/glitch/actions/timelines.js')
-rw-r--r--app/javascript/flavours/glitch/actions/timelines.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/actions/timelines.js b/app/javascript/flavours/glitch/actions/timelines.js
index 0993824b3..46b605e04 100644
--- a/app/javascript/flavours/glitch/actions/timelines.js
+++ b/app/javascript/flavours/glitch/actions/timelines.js
@@ -134,6 +134,7 @@ export const expandHashtagTimeline         = (hashtag, { maxId, tags, local } =
     any: parseTags(tags, 'any'),
     all: parseTags(tags, 'all'),
     none: parseTags(tags, 'none'),
+    local: local,
   }, done);
 };