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 @@ -125,7 +125,7 @@ public async Task<List<NFT>> GetAll(QueryAllParams queryParams = null)
125
125
{
126
126
ThirdwebDebug . LogWarning ( "Unable to fetch using Multicall3, likely not deployed on this chain, falling back to single queries." ) ;
127
127
allNfts = new List < NFT > ( ) ;
128
- for ( int i = start ; i <= end ; i ++ )
128
+ for ( int i = start ; i < end ; i ++ )
129
129
allNfts . Add ( await Get ( i . ToString ( ) ) ) ;
130
130
}
131
131
return allNfts ;
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ public async Task<List<NFT>> GetAll(QueryAllParams queryParams = null)
125
125
catch
126
126
{
127
127
ThirdwebDebug . LogWarning ( "Unable to fetch using Multicall3, likely not deployed on this chain, falling back to single queries." ) ;
128
- for ( int i = start ; i <= end ; i ++ )
128
+ for ( int i = start ; i < end ; i ++ )
129
129
allNfts . Add ( await Get ( i . ToString ( ) ) ) ;
130
130
}
131
131
return allNfts ;
You can’t perform that action at this time.
0 commit comments