This commit is contained in:
2025-12-18 15:59:23 +03:30
parent ee0766aae3
commit 7b8055fa05
+3 -3
View File
@@ -913,7 +913,7 @@ namespace xFileService.Providers
private int GetLastIndex(TKey providedForId)
{
//
var result = 0;
var result = -1;
//
// Validate ...
@@ -935,7 +935,7 @@ namespace xFileService.Providers
.AsEnumerable();
if (all.IsNull() || !all.HasChild())
{
result = 0;
result = -1;
}
else
{
@@ -950,7 +950,7 @@ namespace xFileService.Providers
}
else
{
result = 0;
result = -1;
}
}