This commit is contained in:
kaban 2025-05-10 02:07:52 +08:00
parent cd13b4ec59
commit 138bdf32f9

View File

@ -369,7 +369,7 @@ function modifyDynamicRes(res) {
*/
if (!items || !items.length) {
log.warn('处理动态数据', '未找到任何动态信息');
cards = [];
items = [];
}
if (typeof has_more === 'undefined'
@ -393,7 +393,7 @@ function modifyDynamicRes(res) {
? []
: items.map(item => parseDynamicCard({ item }));
log.info('处理动态数据', `动态数据读取完毕(${cards.length})(${next.has_more})`);
log.info('处理动态数据', `动态数据读取完毕(${items.length})(${next.has_more})`);
return {
modifyDynamicResArray: array,