From fdbb18306431e3b91fafa3a4b38519c4bfb123a3 Mon Sep 17 00:00:00 2001 From: VictoriousRaptor <10308169+VictoriousRaptor@users.noreply.github.com> Date: Sun, 13 Jul 2025 19:00:31 +0800 Subject: [PATCH] Remove readonly to reload correctly --- Flow.Launcher.Infrastructure/PinyinAlphabet.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher.Infrastructure/PinyinAlphabet.cs b/Flow.Launcher.Infrastructure/PinyinAlphabet.cs index 7f7f2da60..29b20a021 100644 --- a/Flow.Launcher.Infrastructure/PinyinAlphabet.cs +++ b/Flow.Launcher.Infrastructure/PinyinAlphabet.cs @@ -14,7 +14,7 @@ namespace Flow.Launcher.Infrastructure { public class PinyinAlphabet : IAlphabet { - private readonly ConcurrentDictionary _pinyinCache = + private ConcurrentDictionary _pinyinCache = new(); private readonly Settings _settings;