修复下载摸鱼图片会死循环问题
修复电池签到任务周任务为空问题
This commit is contained in:
parent
43a816066d
commit
4f5bcc9df3
@ -33,7 +33,9 @@ public class AppUserTask {
|
||||
).append("\n");
|
||||
sb.append("当前银瓜子数量:").append(newTask.wallet.silver).append("\n");
|
||||
sb.append("每日领取电池:").append(newTask.dayTask.toMessageFormat()).append("\n");
|
||||
if (newTask.weekTask != null && !newTask.getWeekTask().isEmpty()) {
|
||||
newTask.weekTask.forEach(task -> sb.append(task.toMessageFormat(newTask.weekTotal)).append("\n"));
|
||||
}
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
|
@ -160,6 +160,7 @@ public class BiliBiliManga {
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println(BiliBiliManga.sign());
|
||||
}
|
||||
|
||||
@Data
|
||||
|
@ -12,6 +12,7 @@ import com.yutou.qqbot.utlis.Log;
|
||||
import net.mamoe.mirai.event.events.MessageEvent;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
@UseModel
|
||||
public class Moyu extends Model {
|
||||
@Override
|
||||
@ -53,6 +54,8 @@ public class Moyu extends Model {
|
||||
String ret = HttpTools.get("https://api.j4u.ink/v1/store/other/proxy/remote/moyu.json");
|
||||
JSONObject json = JSON.parseObject(ret);
|
||||
HttpTools.download(json.getJSONObject("data").getString("moyu_url"), AppTools.getToDayTime() + "_moyu.jpg", new DownloadInterface() {
|
||||
int count = 3;
|
||||
|
||||
@Override
|
||||
public void onDownload(File file) {
|
||||
super.onDownload(file);
|
||||
@ -65,7 +68,11 @@ public class Moyu extends Model {
|
||||
public void onError(Exception e) {
|
||||
super.onError(e);
|
||||
e.printStackTrace();
|
||||
if (count == 0) {
|
||||
return;
|
||||
}
|
||||
downloadImage(isSend, qq);
|
||||
count--;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user