Moralis.Plugins.oneInch.getSupportedTokens

Moralis.Plugins.oneInch.getSupportedTokens works on mainnet but not rinkeby testnet.

This returns a list of tokens:

const mainNetServerUrl = “https://w27tp3u1v7zo.moralishost.com:2053/server”;
const mainNetAppId = “7KDGDCxHgQVBucEJvztp30I638w9ik3JsG3C4rKC”;
Moralis.initialize(mainNetAppId);
Moralis.serverURL = mainNetServerUrl;

An empty list is returned here:

const testNetServerUrl = “https://o39ilg8cqfcv.usemoralis.com:2053/server”;
const testNetAppId = “L5amN5upF4XCjd9VREfR1CRsNezJizZQQ5IBJPlk”;
Moralis.initialize(testNetAppId);
Moralis.serverURL = testNetServerUrl;

Is there a way to fix this???