From 35952a203077fe08ce80286d2de7f732f067aabe Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Sat, 16 Sep 2023 14:01:47 +0100 Subject: [PATCH] fix: no need to send email out, the wolves ID is enough relates to #21 --- src/methods/discord.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/methods/discord.rs b/src/methods/discord.rs index ab01daf..dee2f00 100644 --- a/src/methods/discord.rs +++ b/src/methods/discord.rs @@ -35,7 +35,6 @@ pub mod account { #[derive(Debug, Deserialize, Serialize)] pub struct DiscordResult { discord: String, - email: String, wolves_id: String, } @@ -59,7 +58,6 @@ pub mod account { if !accounts.is_empty() { let tmp = DiscordResult { discord, - email: item.mail, wolves_id: accounts[0].id_wolves.to_owned(), };