Skip to content

Commit

Permalink
修复exo播放荐片
Browse files Browse the repository at this point in the history
  • Loading branch information
generocket committed May 27, 2024
1 parent cad5707 commit b7ba0ca
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -917,14 +917,12 @@ public void play(boolean reset) {
}

if(Jianpian.isJpUrl(vs.url)){//荐片地址特殊判断
String jp_url= vs.url;
mController.showParse(false);
if(vs.url.startsWith("tvbox-xg:")){
playUrl(Jianpian.JPUrlDec(jp_url.substring(9)), null);
vs.url = Jianpian.JPUrlDec(vs.url.substring(9));
}else {
playUrl(Jianpian.JPUrlDec(jp_url), null);
vs.url = Jianpian.JPUrlDec(vs.url);
}
return;
}
if (Thunder.play(vs.url, new Thunder.ThunderCallback() {
@Override
Expand Down

0 comments on commit b7ba0ca

Please sign in to comment.