Skip to content

Commit

Permalink
Fix Issue LemmyNet#3075 by using None for local fields instead of Som…
Browse files Browse the repository at this point in the history
…e(false) (LemmyNet#3088)

* Set insert and update form "local" to None

* Extra space to retrigger woodpecker

* Resolve code review request

LemmyNet#3088 (comment)

* Remove extra space after None,
  • Loading branch information
Neshura87 authored and makotech222 committed Jun 20, 2023
1 parent edea1f8 commit 513ee24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/apub/src/protocol/objects/group.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ impl Group {
deleted: None,
nsfw: Some(self.sensitive.unwrap_or(false)),
actor_id: Some(self.id.into()),
local: Some(false),
local: None,
private_key: None,
hidden: Some(false),
public_key: Some(self.public_key.public_key_pem),
Expand Down

0 comments on commit 513ee24

Please sign in to comment.