diff --git a/Plugins/Wox.Plugin.Program/Main.cs b/Plugins/Wox.Plugin.Program/Main.cs index 86431be80a..139a9b01c5 100644 --- a/Plugins/Wox.Plugin.Program/Main.cs +++ b/Plugins/Wox.Plugin.Program/Main.cs @@ -33,9 +33,9 @@ namespace Wox.Plugin.Program Stopwatch.Normal("Preload programs", () => { - _win32Storage = new BinaryStorage("Win32Cache"); + _win32Storage = new BinaryStorage("Win32"); _win32s = _win32Storage.TryLoad(new Win32[] { }); - _uwpStorage = new BinaryStorage("UWPCache"); + _uwpStorage = new BinaryStorage("UWP"); _uwps = _uwpStorage.TryLoad(new UWP.Application[] { }); }); diff --git a/Wox.Infrastructure/Image/ImageLoader.cs b/Wox.Infrastructure/Image/ImageLoader.cs index aa74769b16..dce0081f7d 100644 --- a/Wox.Infrastructure/Image/ImageLoader.cs +++ b/Wox.Infrastructure/Image/ImageLoader.cs @@ -33,7 +33,7 @@ namespace Wox.Infrastructure.Image static ImageLoader() { - Storage = new BinaryStorage> ("ImageCache"); + Storage = new BinaryStorage> ("Image"); ImageCache.Usage = Storage.TryLoad(new ConcurrentDictionary()); }