]> Untitled Git - lemmy.git/blobdiff - crates/apub/src/activities/following/undo_follow.rs
Dropping default on pending column.
[lemmy.git] / crates / apub / src / activities / following / undo_follow.rs
index f579d2323fdfd06d7288110774c0ca4c62e95a57..f70acdf2725912ebd57cbf041bd3b20ee13accb6 100644 (file)
@@ -77,7 +77,7 @@ impl ActivityHandler for UndoFollowCommunity {
     let community_follower_form = CommunityFollowerForm {
       community_id: community.id,
       person_id: person.id,
-      pending: Some(false),
+      pending: false,
     };
 
     // This will fail if they aren't a follower, but ignore the error.