diff --git a/src/rpc/responses.rs b/src/rpc/responses.rs index 886d65d..a6d4dfc 100644 --- a/src/rpc/responses.rs +++ b/src/rpc/responses.rs @@ -33,9 +33,9 @@ pub enum ModerationStatus { impl From for ModerationStatus { fn from(s: bool) -> Self { if s { - ModerationStatus::Allowed - } else { ModerationStatus::Blocked + } else { + ModerationStatus::Allowed } } }