minor bug fixes (#1225)

This commit is contained in:
Jason Dove
2023-04-01 22:51:48 -05:00
committed by GitHub
parent e93d678b97
commit d2c4a58528
6 changed files with 41 additions and 24 deletions
+1 -1
View File
@@ -137,7 +137,7 @@
PagedTraktListsViewModel data = await _mediator.Send(new GetPagedTraktLists(state.Page, state.PageSize), _cts.Token);
return new TableData<TraktListViewModel> { TotalItems = data.TotalCount, Items = data.Page };
}
catch (Exception ex) when (ex is TaskCanceledException or OperationCanceledException)
catch (Exception ex) when (ex is TaskCanceledException or OperationCanceledException or AggregateException)
{
return new TableData<TraktListViewModel>
{