Started work on #1

This commit is contained in:
Martin Barker
2023-02-03 18:59:07 +00:00
parent 0af2d24b4c
commit 03b620ecec
4 changed files with 72 additions and 1 deletions

View File

@@ -126,7 +126,14 @@ namespace TwitchDesktopNotifications.Core
currentlyLive = following.Data;
}catch(System.Exception ex)
{
MessageBox.Show("Twitch Connection not authenticated you need to Reconnect it.", "Twitch Notify");
if (!ex.Message.Contains("Notification"))
{
MessageBox.Show("Twitch Connection not authenticated you need to Reconnect it.", "Twitch Notify");
}
else
{
MessageBox.Show("Unable to use Windows Notifications.", "Twitch Notify");
}
}
}