From a585704fb6f124abf9c3976b11d03b570450124e Mon Sep 17 00:00:00 2001 From: kernelkind Date: Sat, 18 Jan 2025 16:01:46 -0500 Subject: [PATCH] fix persist deck author profile bug closes: https://github.com/damus-io/notedeck/issues/651 Signed-off-by: kernelkind --- crates/notedeck_columns/src/storage/decks.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/notedeck_columns/src/storage/decks.rs b/crates/notedeck_columns/src/storage/decks.rs index 5bd79e5b..771ac2a0 100644 --- a/crates/notedeck_columns/src/storage/decks.rs +++ b/crates/notedeck_columns/src/storage/decks.rs @@ -367,7 +367,7 @@ impl Keyword { ("contact", Keyword::Contact, false), ("explicit", Keyword::Explicit, true), ("deck_author", Keyword::DeckAuthor, false), - ("profile", Keyword::Profile, true), + ("profile", Keyword::Profile, false), ("hashtag", Keyword::Hashtag, true), ("generic", Keyword::Generic, false), ("thread", Keyword::Thread, true),