We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7687ab commit c3e5222Copy full SHA for c3e5222
src/Files.App/ViewModels/UserControls/Widgets/FileTagsWidgetViewModel.cs
@@ -63,7 +63,7 @@ public async Task RefreshWidgetAsync()
63
if (_updateCTS.IsCancellationRequested)
64
break;
65
66
- var matchingItem = Containers.First(c => c.Uid == item.Uid);
+ var matchingItem = Containers.FirstOrDefault(c => c.Uid == item.Uid);
67
if (matchingItem is null)
68
{
69
CreateTagContainerItem(item);
0 commit comments