Fix wrong image display for tieba forum feeds (#10933)
This commit is contained in:
parent
6ee0d23892
commit
b175d5e1c3
|
|
@ -39,7 +39,7 @@ module.exports = async (ctx) => {
|
|||
.toArray()
|
||||
.map((element) => {
|
||||
const item = $(element);
|
||||
return `<img src="${item.attr('bpic')?.split('?tbpicau')[0]}">`;
|
||||
return `<img src="${item.attr('bpic')}">`;
|
||||
})
|
||||
.join('');
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue