From 8c5255be595d9fb5db4e43297ccea46d0cdc5fad Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Fri, 11 Oct 2024 18:16:37 -0500 Subject: [PATCH] fix when creating torrents folder --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 6e1fc83..cefc8e0 100644 --- a/Program.cs +++ b/Program.cs @@ -7,7 +7,7 @@ using System.Text.Json; using System.Diagnostics; Directory.CreateDirectory("data/cache/movie"); -Directory.CreateDirectory("torrents"); +Directory.CreateDirectory("data/torrents"); HttpClient client = new HttpClient(); MountableServer msvr=new MountableServer(new StaticServer("data/wwwroot"));