Compare commits
	
		
			2 commits
		
	
	
		
			09c828dcc3
			...
			fecf977978
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| fecf977978 | |||
| 149321ae10 | 
					 2 changed files with 1 additions and 12 deletions
				
			
		|  | @ -48,16 +48,6 @@ async fn on_error(error: poise::FrameworkError<'_, KBotData, CommandError>) { | |||
|             error!("Error in command `{}`: {}", ctx.command().name, error,); | ||||
|             let _ = ctx.say("Failed to run command.".to_string()).await; | ||||
|         } | ||||
|         // poise::FrameworkError::ArgumentParse {
 | ||||
|         //     error, input, ctx, ..
 | ||||
|         // } => {
 | ||||
|         //     debug!(
 | ||||
|         //         "Failed to parse argument `{:?}` for command `{}`: {}",
 | ||||
|         //         input,
 | ||||
|         //         ctx.command().name,
 | ||||
|         //         error
 | ||||
|         //     );
 | ||||
|         // }
 | ||||
|         error => { | ||||
|             if let Err(e) = poise::builtins::on_error(error).await { | ||||
|                 error!("Error while handling error: {}", e); | ||||
|  |  | |||
|  | @ -14,7 +14,7 @@ pub enum SendTargetParseError { | |||
|     ChannelError(#[from] GuildChannelParseError), | ||||
|     #[error("error during parsing as message")] | ||||
|     MessageError(#[from] MessageParseError), | ||||
|     #[error("failed to parse target")] | ||||
|     #[error("target is neither a channel, user, or message")] | ||||
|     Malformed, | ||||
| } | ||||
| 
 | ||||
|  | @ -48,7 +48,6 @@ impl serenity::ArgumentConvert for SendTarget { | |||
|         match channel_result { | ||||
|             Ok(channel) => return Ok(Self::Channel(Box::new(channel))), | ||||
|             Err(ref e) => { | ||||
|                 tracing::error!("{:?}", e); | ||||
|                 if let GuildChannelParseError::Http(_) = e { | ||||
|                     channel_result?; | ||||
|                 } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue