From 72763d149528d7c8853d134663476783d24866fe Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sun, 12 Dec 2021 22:34:10 -0600 Subject: [PATCH] Properly filter DMs from timelines --- app/soapbox/actions/settings.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/soapbox/actions/settings.js b/app/soapbox/actions/settings.js index 55ca6b0b5..1bfaef7a2 100644 --- a/app/soapbox/actions/settings.js +++ b/app/soapbox/actions/settings.js @@ -103,6 +103,7 @@ export const defaultSettings = ImmutableMap({ shows: ImmutableMap({ reblog: false, reply: true, + direct: false, }), other: ImmutableMap({ onlyMedia: false, @@ -116,6 +117,7 @@ export const defaultSettings = ImmutableMap({ shows: ImmutableMap({ reblog: true, reply: true, + direct: false, }), other: ImmutableMap({ onlyMedia: false, @@ -135,6 +137,7 @@ export const defaultSettings = ImmutableMap({ shows: ImmutableMap({ reblog: true, pinned: true, + direct: false, }), }),