Skip to content
This repository has been archived by the owner on Feb 16, 2021. It is now read-only.

Commit

Permalink
解决一个后退时导致死循环的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiichiamane committed Oct 3, 2019
1 parent f9bfd73 commit 5b96dcc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions PixivFSUWP/Controls/WaterfallListView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ private async void ScrollViewer_ViewChanged(object sender, ScrollViewerViewChang
{
await (ItemsSource as ISupportIncrementalLoading)?.LoadMoreItemsAsync(0);
}
catch (InvalidOperationException)
{
return;
}
catch { }
}
}
Expand Down

0 comments on commit 5b96dcc

Please sign in to comment.