mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Add null check for OnCollectionChanged
This commit is contained in:
parent
e0c345ae13
commit
8311b39ddc
1 changed files with 1 additions and 1 deletions
|
|
@ -249,7 +249,7 @@ namespace Flow.Launcher.ViewModel
|
|||
|
||||
protected void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
|
||||
{
|
||||
CollectionChanged(this, e);
|
||||
CollectionChanged?.Invoke(this, e);
|
||||
}
|
||||
|
||||
public void BulkAddAll(List<ResultViewModel> resultViews)
|
||||
|
|
|
|||
Loading…
Reference in a new issue