File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ public async Task<List<NFT>> GetAll(QueryAllParams queryParams = null)
86
86
{
87
87
int totalCount = await TotalCount ( ) ;
88
88
int start = queryParams ? . start ?? 0 ;
89
- int count = queryParams ? . count + 1 ?? totalCount ;
89
+ int count = queryParams ? . count ?? totalCount ;
90
90
int end = Math . Min ( start + count , totalCount ) ;
91
91
List < NFT > allNfts = new ( ) ;
92
92
try
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ public async Task<List<NFT>> GetAll(QueryAllParams queryParams = null)
88
88
{
89
89
int totalCount = await TotalCount ( ) ;
90
90
int start = queryParams ? . start ?? 0 ;
91
- int count = queryParams ? . count + 1 ?? totalCount ;
91
+ int count = queryParams ? . count ?? totalCount ;
92
92
int end = Math . Min ( start + count , totalCount ) ;
93
93
List < NFT > allNfts = new ( ) ;
94
94
try
Original file line number Diff line number Diff line change @@ -396,7 +396,7 @@ MonoBehaviour:
396
396
loadMultipleNfts :
397
397
- contractAddress : 0x5350e0662D1BAB9f8843690B91C363aFD3e0cFe7
398
398
startID : 0
399
- count : 2
399
+ count : 3
400
400
type : 0
401
401
loadOwnedNfts :
402
402
- contractAddress : 0x5350e0662D1BAB9f8843690B91C363aFD3e0cFe7
You can’t perform that action at this time.
0 commit comments