From 66afc34bbdf7b6170d4eae8c232b9956e7236057 Mon Sep 17 00:00:00 2001 From: pancakes Date: Thu, 27 Mar 2025 17:44:36 +1000 Subject: [PATCH] [backend/services] Remove unused exception variable --- Iceshrimp.Backend/Core/Services/InstanceService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Iceshrimp.Backend/Core/Services/InstanceService.cs b/Iceshrimp.Backend/Core/Services/InstanceService.cs index 92e19f64..68244380 100644 --- a/Iceshrimp.Backend/Core/Services/InstanceService.cs +++ b/Iceshrimp.Backend/Core/Services/InstanceService.cs @@ -147,7 +147,7 @@ public class InstanceService( iconUrl != null ? new Uri(baseUri, iconUrl).ToString() : null ); } - catch (Exception e) + catch { return (null, null); }