Fixed dupes dict bug, fixed autoenc getting stuck (i think?)

This commit is contained in:
N00MKRAD
2021-01-05 13:00:27 +01:00
parent 17a59a36a5
commit e6f129e4e5
5 changed files with 22 additions and 18 deletions

View File

@@ -86,7 +86,7 @@ namespace Flowframes.OS
public static bool HasEmbeddedPyFolder ()
{
return Directory.Exists(GetPyFolder());
return (Directory.Exists(GetPyFolder()) && IOUtils.GetDirSize(GetPyFolder(), false) > 1024 * 1024 * 5);
}
public static string GetPyFolder ()