parent
d8e92bd4e2
commit
1fea735dc3
|
|
@ -28,6 +28,12 @@ module.exports = async (ctx) => {
|
|||
})
|
||||
.get();
|
||||
|
||||
for (let i = list.length - 1; i >= 0; i--) {
|
||||
if (list[i].author === '[已注销]') {
|
||||
list.splice(i, 1);
|
||||
}
|
||||
}
|
||||
|
||||
const out = await Promise.all(
|
||||
list.map(async (info) => {
|
||||
const title = info.title;
|
||||
|
|
|
|||
Loading…
Reference in New Issue