Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Files.App/ViewModels/Properties/Items/FileProperty.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using Files.App.Converters;
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Data;
using System.Text.Json;
using System.Collections.Concurrent;
using Windows.Storage;

namespace Files.App.ViewModels.Properties
Expand Down Expand Up @@ -275,7 +275,7 @@ private object ConvertBack(string value)
return value;
}

private static Dictionary<string, string> cachedPropertiesListFiles = [];
private static ConcurrentDictionary<string, string> cachedPropertiesListFiles = [];

/// <summary>
/// This function retrieves the list of properties to display from the PropertiesInformation.json
Expand Down