chore: Fix blocklist gets cleared

This commit is contained in:
Christian Pauly 2021-12-29 11:06:53 +01:00
parent 9f040acee0
commit b09d651130

View File

@ -46,6 +46,7 @@ class _InviteStoryPageState extends State<InviteStoryPage> {
} }
_undecided.removeAll(_invite); _undecided.removeAll(_invite);
_undecided.addAll(client.storiesBlockList);
await client.setStoriesBlockList(_undecided.toList()); await client.setStoriesBlockList(_undecided.toList());
}, },
); );