File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Assets/Thirdweb/Core/Scripts Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ public async Task<List<NFT>> GetAll(QueryAllParams queryParams = null)
94
94
}
95
95
// TODO: Add Multicall
96
96
List < NFT > allNfts = new List < NFT > ( ) ;
97
- for ( int i = start ; i < end ; i ++ )
97
+ for ( int i = start ; i <= end ; i ++ )
98
98
allNfts . Add ( await Get ( i . ToString ( ) ) ) ;
99
99
return allNfts ;
100
100
}
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ public async Task<List<NFT>> GetAll(QueryAllParams queryParams = null)
102
102
catch ( System . Exception )
103
103
{
104
104
List < NFT > allNfts = new List < NFT > ( ) ;
105
- for ( int i = start ; i < end ; i ++ )
105
+ for ( int i = start ; i <= end ; i ++ )
106
106
allNfts . Add ( await Get ( i . ToString ( ) ) ) ;
107
107
return allNfts ;
108
108
}
You can’t perform that action at this time.
0 commit comments