修改服务存储切换bug

This commit is contained in:
2023-06-07 11:31:15 +08:00
parent b9f78c5f0b
commit 81f5b47918
2 changed files with 2 additions and 3 deletions
@@ -85,8 +85,7 @@ namespace IRaCIS.Core.API
if (defaultFileProvider.GetFileInfo(path).Exists)
{
var actrualPath = defaultFileProvider.GetFileInfo(path).PhysicalPath;
var actrualPath2 = defaultFileProvider.GetFileInfo(path).PhysicalPath;
var actrualPath = defaultFileProvider.GetFileInfo(path).PhysicalPath;
await context.Response.SendFileAsync(new PhysicalFileInfo(new FileInfo(actrualPath)));