]> cat aescling's git repositories - mastodon.git/commitdiff
Fix local-only hashtag columns
authorThibaut Girka <thib@sitedethib.com>
Thu, 28 May 2020 12:57:20 +0000 (14:57 +0200)
committerThibG <thib@sitedethib.com>
Thu, 28 May 2020 13:21:16 +0000 (15:21 +0200)
app/javascript/flavours/glitch/actions/timelines.js

index 0993824b3526911410f6259fd2d270eca9b9be5f..46b605e048920132fc16033dccd775e726f7432b 100644 (file)
@@ -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);
 };