From 8db743c1e3825ee64ae712083367588e4593fec6 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Mon, 20 Feb 2023 14:41:32 -0500 Subject: [PATCH] Fixes the "Show Anyway" button not working in the first element of the Thread view --- .../java/com/vitorpamplona/amethyst/ui/screen/ThreadFeedView.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/vitorpamplona/amethyst/ui/screen/ThreadFeedView.kt b/app/src/main/java/com/vitorpamplona/amethyst/ui/screen/ThreadFeedView.kt index 921be72b9..aec04840f 100644 --- a/app/src/main/java/com/vitorpamplona/amethyst/ui/screen/ThreadFeedView.kt +++ b/app/src/main/java/com/vitorpamplona/amethyst/ui/screen/ThreadFeedView.kt @@ -163,7 +163,7 @@ fun NoteMaster(baseNote: Note, accountViewModel: AccountViewModel, navController if (note?.event == null) { BlankNote() - } else if (!account.isAcceptable(noteForReports)) { + } else if (!account.isAcceptable(noteForReports) && !showHiddenNote) { HiddenNote( account.getRelevantReports(noteForReports), account.userProfile(),