From d42bf9a33263fa11d71557357a46d0a7dd9b607b Mon Sep 17 00:00:00 2001 From: Martin Barker Date: Thu, 23 Feb 2023 17:16:34 +0000 Subject: [PATCH] increased notification time to 10 mins --- TwitchDesktopNotifications/Core/Notification.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TwitchDesktopNotifications/Core/Notification.cs b/TwitchDesktopNotifications/Core/Notification.cs index f8fe8ea..a8f6c9c 100644 --- a/TwitchDesktopNotifications/Core/Notification.cs +++ b/TwitchDesktopNotifications/Core/Notification.cs @@ -93,7 +93,7 @@ namespace TwitchDesktopNotifications.Core } builder.Show(toast => { - toast.ExpirationTime = DateTime.Now.AddSeconds(15); + toast.ExpirationTime = DateTime.Now.AddMinutes(10); toast.Dismissed += (ToastNotification sender, ToastDismissedEventArgs args) => { try