From a7fe7cad683ba789420bf5b95010a92abc1687d5 Mon Sep 17 00:00:00 2001 From: Uthman Yahaya Baba Date: Tue, 22 Apr 2025 16:04:32 +0100 Subject: [PATCH] Replace NetworkError::CorsViolation and NetworkErrorr::SecurityBlock with granular enum variants Signed-off-by: Uthman Yahaya Baba --- components/shared/net/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/shared/net/lib.rs b/components/shared/net/lib.rs index 8d1c199ef48..fc6d111ccb6 100644 --- a/components/shared/net/lib.rs +++ b/components/shared/net/lib.rs @@ -953,7 +953,7 @@ pub enum NetworkError { MixedContent, CacheError, InvalidPort, - LocalDirectoryError, + LocalDirectoryError, } impl NetworkError {