Update AList.java

This commit is contained in:
FongMi 2023-01-03 12:37:04 +08:00
parent b124c3c2cd
commit cfa8d12e83
1 changed files with 1 additions and 2 deletions

View File

@ -166,8 +166,7 @@ public class AList extends Spider {
String response = OkHttp.postJson(drive.searchApi(), drive.params(keyword));
List<Item> items = Item.arrayFrom(getSearchJson(drive.isNew(), response));
for (Item item : items) if (!item.ignore(drive.isNew())) list.add(item.getVod(drive));
} catch (Exception e) {
e.printStackTrace();
} catch (Exception ignored) {
} finally {
cd.countDown();
}