Fix wrong image display for tieba forum feeds (#10933)

This commit is contained in:
ToffeeNeko 2022-09-28 04:30:09 -05:00 committed by GitHub
parent 6ee0d23892
commit b175d5e1c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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('');