Skip to content

Commit 5a289e8

Browse files
Fix Opensea Update (#3368)
* - Fix for WalletConnect V2 Foreground Service * - Fix for Opensea service update
1 parent 6f15a60 commit 5a289e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/alphawallet/app/service/OpenSeaService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public Single<Token[]> getTokens(String address,
159159
//process this page of results
160160
processOpenseaTokens(foundTokens, assets, address, networkId, networkName, tokensService);
161161
currentPage++;
162-
pageCursor = result.getString("next");
162+
pageCursor = result.has("next") ? result.getString("next") : "";
163163
if (TextUtils.isEmpty(pageCursor))
164164
{
165165
break;

0 commit comments

Comments
 (0)