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
3 changes: 2 additions & 1 deletion Flow.Launcher/PublicAPIInstance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
using System.Runtime.CompilerServices;
using Flow.Launcher.Infrastructure.Logger;
using Flow.Launcher.Infrastructure.Storage;
using System.Collections.Concurrent;

namespace Flow.Launcher
{
Expand Down Expand Up @@ -144,7 +145,7 @@ public void LogWarn(string className, string message, [CallerMemberName] string
public void LogException(string className, string message, Exception e,
[CallerMemberName] string methodName = "") => Log.Exception(className, message, e, methodName);

private readonly Dictionary<Type, object> _pluginJsonStorages = new();
private readonly ConcurrentDictionary<Type, object> _pluginJsonStorages = new();

public void SavePluginSettings()
{
Expand Down