pull/594/head
jhengazuki 8 months ago
parent cb882a6747
commit 80cf5c7454
  1. 8
      app/src/main/java/com/fongmi/android/tv/model/LiveViewModel.java

@ -72,7 +72,13 @@ public class LiveViewModel extends ViewModel {
public void getXml(Live item) {
execute(XML, () -> {
boolean result = false;
for (String url : item.getEpgXml()) if (EpgParser.start(item, url)) result = true;
for (String url : item.getEpgXml()) {
try {
if (EpgParser.start(item, url)) result = true;
} catch (Exception e) {
e.printStackTrace();
}
}
return result;
});
}

Loading…
Cancel
Save