Add new log command and some general command improvments

This commit is contained in:
Stone_Red
2023-12-13 21:34:57 +01:00
parent b009d1ac64
commit 8a587ee627
13 changed files with 319 additions and 118 deletions
@@ -83,7 +83,7 @@ public class FilesManager
public bool Contains(string? hash)
{
return files.Any(f => f.Hash == hash);
return files.Exists(f => f.Hash == hash);
}
public List<PrivateHyperFileInfo> ToList()