From a83e4b595411fe5302fa9f1a2869539fb10a2e4a Mon Sep 17 00:00:00 2001 From: Franklin Date: Sun, 16 Oct 2022 21:09:51 -0400 Subject: [PATCH] changed requested status to active --- src/domain/enums/league_player_status.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/domain/enums/league_player_status.rs b/src/domain/enums/league_player_status.rs index 64c3e1e..bafb425 100644 --- a/src/domain/enums/league_player_status.rs +++ b/src/domain/enums/league_player_status.rs @@ -66,7 +66,7 @@ impl LeaguePlayerStatus { match self { LeaguePlayerStatus::Denied => StatusType::Inactive, LeaguePlayerStatus::Joined => StatusType::Active, - LeaguePlayerStatus::Requested => StatusType::Inactive, + LeaguePlayerStatus::Requested => StatusType::Active, LeaguePlayerStatus::Kicked => StatusType::Inactive, LeaguePlayerStatus::Left => StatusType::Inactive, LeaguePlayerStatus::Invited => StatusType::Inactive,