From b034a8c953229ba81d566af43eb0f7bf320027da Mon Sep 17 00:00:00 2001 From: yeyang <746659424@qq.com> Date: Tue, 31 Jan 2023 03:34:19 +0800 Subject: [PATCH] modified: model/Bika.js --- model/Bika.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/model/Bika.js b/model/Bika.js index a3f0cc0..abc08ac 100644 --- a/model/Bika.js +++ b/model/Bika.js @@ -70,7 +70,7 @@ export default new (class { `喜欢:${likesCount}\n`, `完结:${finished}\n`, tags ? `tag:${lodash.truncate(tags.join(','))}\n` : '', - segment.image(this.imgproxy ?? `${thumb.fileServer}/static/` + thumb.path) + segment.image((this.imgproxy ?? `${thumb.fileServer}/static/`) + thumb.path) ] }) ] @@ -94,7 +94,7 @@ export default new (class { return [ `id: ${_id}, ${title}`, `共${total}张,当前为第${pg}页,共${pages}页`, - ...docs.map(item => segment.image(this.imgproxy ?? `${item.media.fileServer}/static/` + item.media.path)) + ...docs.map(item => segment.image((this.imgproxy ?? `${item.media.fileServer}/static/`) + item.media.path)) ] } @@ -146,7 +146,7 @@ export default new (class { `评论量:${totalComments}\n`, `分类:${categories.join(',')}\n`, `tag:${tags.join(',')}`, - segment.image(this.imgproxy ?? `${thumb.fileServer}/static/` + thumb.path) + segment.image((this.imgproxy ?? `${thumb.fileServer}/static/`) + thumb.path) ] } })()