fix static data download fail

This commit is contained in:
Mikhail
2024-07-12 07:56:43 -04:00
parent 3ddbe47b7b
commit 618619e36d
3 changed files with 23 additions and 13 deletions

View File

@@ -169,7 +169,7 @@ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
public static string GetCachePathForPath(string path)
{
return AppDomain.CurrentDomain.BaseDirectory + "cache" + path;
return AppDomain.CurrentDomain.BaseDirectory + "cache/" + path;
}
private static async Task HandleAsset(IHttpContext ctx)
{