Properly filter DMs from timelines

merge-requests/909/head
Alex Gleason 3 years ago
parent b706024e31
commit 72763d1495
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -103,6 +103,7 @@ export const defaultSettings = ImmutableMap({
shows: ImmutableMap({ shows: ImmutableMap({
reblog: false, reblog: false,
reply: true, reply: true,
direct: false,
}), }),
other: ImmutableMap({ other: ImmutableMap({
onlyMedia: false, onlyMedia: false,
@ -116,6 +117,7 @@ export const defaultSettings = ImmutableMap({
shows: ImmutableMap({ shows: ImmutableMap({
reblog: true, reblog: true,
reply: true, reply: true,
direct: false,
}), }),
other: ImmutableMap({ other: ImmutableMap({
onlyMedia: false, onlyMedia: false,
@ -135,6 +137,7 @@ export const defaultSettings = ImmutableMap({
shows: ImmutableMap({ shows: ImmutableMap({
reblog: true, reblog: true,
pinned: true, pinned: true,
direct: false,
}), }),
}), }),

Loading…
Cancel
Save