Fix item idx not being returned

This commit is contained in:
Esteban Margaron 2022-12-08 22:52:53 -08:00
parent ea1cea7b7e
commit 1e71bbdf43

View File

@ -100,6 +100,7 @@ namespace Peek.UI.FolderItemSources
// TODO: pass & throw cancellation token (not essential, but may free thread resources earlier)
result.ItemsCount = await ItemQuery.GetItemCountAsync();
result.FirstItemIndex = firstItemIndex;
return result;
}
catch (Exception)