涩图模块:匹配正则

This commit is contained in:
Yutousama 2022-04-17 21:43:09 +08:00
parent fdc1d7c880
commit c0b394c613

View File

@ -65,7 +65,6 @@ public class GetSeTu extends Model {
}
String ret = HttpTools.get(url);
JSONObject json = JSONObject.parseObject(ret);
System.out.println("涩图反馈 = " + json);
if (json.getJSONArray("data").size() == 0) {
QQBotManager.getInstance().sendMessage(qq, "找不到喵~");
return;
@ -99,6 +98,7 @@ public class GetSeTu extends Model {
public void onError(Exception e) {
super.onError(e);
QQBotManager.getInstance().sendMessage(qq, "获取失败喵~");
e.printStackTrace();
}
});
}