Skip to content

Commit

Permalink
🐛 fix script NotFound
Browse files Browse the repository at this point in the history
  • Loading branch information
Mossimos committed Jan 29, 2024
1 parent 8fff1d1 commit 2754fb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ void LoadScriptContent(ConcurrentDictionary<int, string> dict, IEnumerable<Scrip

static bool LoadScriptFille(string cachePath, out string? content)
{
var cacheFilePath = Path.Combine(IOPath.CacheDirectory, cachePath);
var cacheFilePath = Path.Combine(IOPath.CacheDirectory, AssemblyInfo.Plugins, AssemblyInfo.Accelerator, cachePath);
if (File.Exists(cacheFilePath))
{
content = File.ReadAllText(cacheFilePath);
Expand Down

0 comments on commit 2754fb5

Please sign in to comment.