mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-11 05:52:19 +02:00
rename cache file
This commit is contained in:
@@ -33,9 +33,9 @@ namespace Wox.Plugin.Program
|
||||
|
||||
Stopwatch.Normal("Preload programs", () =>
|
||||
{
|
||||
_win32Storage = new BinaryStorage<Win32[]>("Win32Cache");
|
||||
_win32Storage = new BinaryStorage<Win32[]>("Win32");
|
||||
_win32s = _win32Storage.TryLoad(new Win32[] { });
|
||||
_uwpStorage = new BinaryStorage<UWP.Application[]>("UWPCache");
|
||||
_uwpStorage = new BinaryStorage<UWP.Application[]>("UWP");
|
||||
_uwps = _uwpStorage.TryLoad(new UWP.Application[] { });
|
||||
|
||||
});
|
||||
|
||||
@@ -33,7 +33,7 @@ namespace Wox.Infrastructure.Image
|
||||
|
||||
static ImageLoader()
|
||||
{
|
||||
Storage = new BinaryStorage<ConcurrentDictionary<string, int>> ("ImageCache");
|
||||
Storage = new BinaryStorage<ConcurrentDictionary<string, int>> ("Image");
|
||||
ImageCache.Usage = Storage.TryLoad(new ConcurrentDictionary<string, int>());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user