Skip to content

Commit d965eaa

Browse files
committed
兼容MCBBS最新的服务器提升卡名称
1 parent 3609949 commit d965eaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/moe/feo/bbstoper/Crawler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public void resolveWebData() {
5858
for (Element rows : listbody.getElementsByTag("tr")) {// tr是表的一行
5959
Elements cells = rows.getElementsByTag("td");// td表示一行的单元格,cells为单元格的合集
6060
String action = cells.get(2).text();
61-
if (!(action.equals("提升(提升卡)")||action.equals("提升(服务器提升卡)"))) {// 这里过滤掉不是提升卡的操作
61+
if (!(action.equals("提升(提升卡)")||action.equals("提升(服务器/交易代理提升卡)"))) {// 这里过滤掉不是提升卡的操作
6262
continue;
6363
}
6464
Element idcell = cells.get(0);// 第一个单元格中包含有id

0 commit comments

Comments
 (0)