We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5512092 commit 9c39840Copy full SHA for 9c39840
1 file changed
TACTSharp/CDN.cs
@@ -28,6 +28,9 @@ public void OpenLocal()
28
{
29
if (Settings.BaseDir != null)
30
31
+ if (CASCIndexInstances.Count > 0)
32
+ return;
33
+
34
try
35
36
var localTimer = new Stopwatch();
@@ -108,6 +111,9 @@ private void LoadCASCIndices()
108
111
var dataDir = Path.Combine(Settings.BaseDir, "Data", "data");
109
112
if (Directory.Exists(dataDir))
110
113
114
+ if(CASCIndexInstances.Count > 0)
115
116
117
var indexFiles = Directory.GetFiles(dataDir, "*.idx");
118
foreach (var indexFile in indexFiles)
119
0 commit comments