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)
125125 {
126126 ThirdwebDebug . LogWarning ( "Unable to fetch using Multicall3, likely not deployed on this chain, falling back to single queries." ) ;
127127 allNfts = new List < NFT > ( ) ;
128- for ( int i = start ; i <= end ; i ++ )
128+ for ( int i = start ; i < end ; i ++ )
129129 allNfts . Add ( await Get ( i . ToString ( ) ) ) ;
130130 }
131131 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)
125125 catch
126126 {
127127 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 ++ )
129129 allNfts . Add ( await Get ( i . ToString ( ) ) ) ;
130130 }
131131 return allNfts ;
You can’t perform that action at this time.
0 commit comments