From 3986349c0883c7b866097b9a4527afda0cd58dc9 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Sat, 11 Oct 2025 06:58:02 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(processor):=20correct=20typo?= =?UTF-8?q?=20in=20error=20message?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - fix typo "LableNotFoundInMailbox" to "LabelNotFoundInMailbox" --- src/processor.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/processor.rs b/src/processor.rs index e6a15b7..edd6276 100644 --- a/src/processor.rs +++ b/src/processor.rs @@ -34,7 +34,7 @@ impl<'a> Processor<'a> { .await?; if messages_to_trash.message_list().label_ids().is_empty() { - return Err(Error::LableNotFoundInMailbox(label.to_string())); + return Err(Error::LabelNotFoundInMailbox(label.to_string())); } let Some(query) = self.rule.eol_query() else { @@ -63,7 +63,7 @@ impl<'a> Processor<'a> { .await?; if messages_to_delete.message_list().label_ids().is_empty() { - return Err(Error::LableNotFoundInMailbox(label.to_string())); + return Err(Error::LabelNotFoundInMailbox(label.to_string())); } let Some(query) = self.rule.eol_query() else {