]> Untitled Git - lemmy.git/blobdiff - crates/db_views_actor/src/structs.rs
Making community_follower.pending column not null.
[lemmy.git] / crates / db_views_actor / src / structs.rs
index 25d2c178e4163929175a850ae86d23a6a3106cbe..a0b1ad4bccc02ceef0ca94fd515a6982a944ffd0 100644 (file)
@@ -20,7 +20,7 @@ pub struct CommunityBlockView {
 pub struct CommunityFollowerView {
   pub community: CommunitySafe,
   pub follower: PersonSafe,
-  pub pending: Option<bool>,
+  pub pending: bool,
 }
 
 #[derive(Debug, Serialize, Deserialize, Clone)]