include changes from master #43

Merged
fyr77 merged 3 commits from master into feature-autodownload 2024-02-26 19:03:18 +01:00
Showing only changes of commit 8ce6a92146 - Show all commits

View file

@ -6,9 +6,16 @@ namespace EnvyUpdate
{
public static void ShowDrivUpdatePopup()
{
var toast = new ToastContentBuilder();
toast.AddText(Properties.Resources.update_popup_message);
toast.Show();
try
{
var toast = new ToastContentBuilder();
toast.AddText(Properties.Resources.update_popup_message);
toast.Show();
}
catch (System.Exception ex)
{
Debug.LogToFile("WARN Could not show notification. Error: " + ex.Message);
}
}
}
}