1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-12 21:38:38 +00:00

Release details - Don't show exception message on cancel

This commit is contained in:
Robert 2023-03-26 12:32:37 +02:00
parent 76f7d9c157
commit 834212737f

View File

@ -199,6 +199,10 @@ public class ReleaseViewModel : ActivatableViewModelBase
_retrievedDetails = true;
}
catch (TaskCanceledException)
{
// ignored
}
catch (Exception e)
{
_logger.Warning(e, "Failed to retrieve release details");