Skip to content
New issue

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

fix bug #342

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Next Next commit
同步最新脚本,修复kuwo源
修复歌曲播放缓冲失败
  • Loading branch information
luoxingran committed Jul 12, 2023
commit e9a1c8cb49ec050131a4d838f772f94d6a676132
Binary file modified app/src/main/assets/UnblockNeteaseMusic.zip
Binary file not shown.
5 changes: 3 additions & 2 deletions app/src/main/java/com/raincat/dolby_beta/hook/ProxyHook.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,11 @@ protected void beforeHookedMethod(MethodHookParam param) throws Throwable {
urlField.setAccessible(true);
Object urlObj = urlField.get(request);
for (String url : whiteUrlList) {
if (urlObj.toString().contains(url)) {
setProxy(context, client);
/* if (urlObj.toString().contains(url)) {
setProxy(context, client);
break;
}
}*/
}
}
}
Expand Down