提交 184fd47c 编写于 作者: AndroidLeaves's avatar AndroidLeaves

fix

上级 7a8fca0d
此差异已折叠。
......@@ -3,7 +3,7 @@
// icon-color: red; icon-glyph: user-astronaut;
/**
* Author:LSP
* Date:2022-12-09
* Date:2022-12-11
*/
// -------------------------------------------------------
// 是否是开发环境,配合手机端调试使用,正式发布设置为false
......@@ -359,11 +359,9 @@ class Widget extends BaseWidget {
if (filterFinished) {
showInfoArr = showInfoArr.filter(item => item.match_status != 3);
if (showInfoArr.length == 0) {
if (currDateIndex != match_infos.length - 1) {
let key = matchInfoKeys[currDateIndex];
showInfoArr = showInfoArr.concat(match_infos[key]);
}
if (showInfoArr.length == 0 && currDateIndex != match_infos.length) {
let key = matchInfoKeys[currDateIndex + 1];
showInfoArr = showInfoArr.concat(match_infos[key]);
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册