We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
查看源码发现和AndroidVideoCache比,将Pinger相关的逻辑都删除了,为什么要删除这个逻辑呢?
public String getProxyUrl(String url, boolean allowCachedFileUri) { if (allowCachedFileUri && isCached(url)) { File cacheFile = getCacheFile(url); touchFileSafely(cacheFile); return Uri.fromFile(cacheFile).toString(); } return isAlive() ? appendToProxyUrl(url) : url; }
The text was updated successfully, but these errors were encountered:
服务器请求太快会报错,导致抖音预加载会请求不到数据
Sorry, something went wrong.
No branches or pull requests
查看源码发现和AndroidVideoCache比,将Pinger相关的逻辑都删除了,为什么要删除这个逻辑呢?
public String getProxyUrl(String url, boolean allowCachedFileUri) {
if (allowCachedFileUri && isCached(url)) {
File cacheFile = getCacheFile(url);
touchFileSafely(cacheFile);
return Uri.fromFile(cacheFile).toString();
}
return isAlive() ? appendToProxyUrl(url) : url;
}
The text was updated successfully, but these errors were encountered: