From eb5282a50d9949a4a21180d0fcf1ae0046b5422f Mon Sep 17 00:00:00 2001 From: matty Date: Sat, 5 Jul 2025 02:17:02 +0000 Subject: [PATCH] slightly fix my bawlz --- src/main.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.ts b/src/main.ts index 438bd51..87a6802 100644 --- a/src/main.ts +++ b/src/main.ts @@ -187,8 +187,9 @@ const deleteNotification = async (notification: Notification) => { } ); if (!response.ok) { - console.error(`Could not delete notification ID: ${notification.id}`); - console.error(response.statusText); + console.error( + `Could not delete notification ID: ${notification.id}\nReason: ${response.status} - ${response.statusText}` + ); } } catch (error: any) { throw new Error(error.message);