We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 742690d commit 5512092Copy full SHA for 5512092
TACTSharp/Build.cs
@@ -51,6 +51,9 @@ public void Load()
51
52
var timer = new System.Diagnostics.Stopwatch();
53
54
+ if (!string.IsNullOrEmpty(Settings.BaseDir))
55
+ cdn.OpenLocal();
56
+
57
timer.Start();
58
if (!CDNConfig.Values.TryGetValue("archive-group", out var groupArchiveIndex))
59
{
TACTSharp/CDN.cs
@@ -22,6 +22,10 @@ public class CDN
22
public CDN(Settings settings)
23
24
Settings = settings;
25
+ }
26
27
+ public void OpenLocal()
28
+ {
29
if (Settings.BaseDir != null)
30
31
try
0 commit comments