Skip to content

Commit

Permalink
Feeds - vm| cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
bricefriha committed Jan 24, 2025
1 parent 1143254 commit 0880889
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions App/ViewModels/FeedsViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public int CurrentFeedIndex
set
{
_currentFeedIndex = value;
//SwitchTabs(_currentFeedIndex);


OnPropertyChanged(nameof(CurrentFeedIndex));

Expand Down Expand Up @@ -436,11 +436,11 @@ private void InsertArticles(IEnumerable<Article> articles, bool force = false)
return;
}

Articles = new ObservableRangeCollection<Article>();
Articles = new ObservableRangeCollection<Article>();

Articles.AddRange(articles);
if (articlesOld.Any())
Articles.AddRange(articlesOld);
Articles.AddRange(articlesOld);

}

Expand Down

0 comments on commit 0880889

Please sign in to comment.