Update AList.java
This commit is contained in:
parent
b124c3c2cd
commit
cfa8d12e83
|
|
@ -166,8 +166,7 @@ public class AList extends Spider {
|
||||||
String response = OkHttp.postJson(drive.searchApi(), drive.params(keyword));
|
String response = OkHttp.postJson(drive.searchApi(), drive.params(keyword));
|
||||||
List<Item> items = Item.arrayFrom(getSearchJson(drive.isNew(), response));
|
List<Item> items = Item.arrayFrom(getSearchJson(drive.isNew(), response));
|
||||||
for (Item item : items) if (!item.ignore(drive.isNew())) list.add(item.getVod(drive));
|
for (Item item : items) if (!item.ignore(drive.isNew())) list.add(item.getVod(drive));
|
||||||
} catch (Exception e) {
|
} catch (Exception ignored) {
|
||||||
e.printStackTrace();
|
|
||||||
} finally {
|
} finally {
|
||||||
cd.countDown();
|
cd.countDown();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue