[CHANGE] Small changes, renamed app title

This commit is contained in:
max
2025-08-31 21:08:14 +02:00
parent d501015b82
commit 2f018d131e
3 changed files with 3 additions and 3 deletions

View File

@@ -59,7 +59,7 @@ public class LibraryService : ILibraryService
{
try
{
var size = dir.EnumerateFiles("", SearchOption.AllDirectories).Select(f => f.Length).Sum();
var size = dir.EnumerateFiles("*", SearchOption.AllDirectories).Select(f => f.Length).Sum();
return size;
}
catch (Exception e)