mirror of
https://github.com/ikun0014/lx-music-mobile.git
synced 2025-07-03 14:42:09 +08:00
修复tx热门评论昵称被错误切割的问题
This commit is contained in:
parent
9f98e615bb
commit
bd700ccda1
@ -8,3 +8,4 @@
|
||||
- 修复wy歌单分类切换无效的问题
|
||||
- 修复因插入数字类型的ID导致其意外在末尾追加 .0 导致列表数据异常的问题,同时也可能导致同步数据丢失的问题(此问题会影响PC端,要完全修复这个问题还需要同时将PC端、同步服务更新到最新版本)
|
||||
- 修复在线列表、我的列表内的歌曲批量操作后,没有自动取消选择的问题
|
||||
- 修复tx热门评论昵称被错误切割的问题 (By: @helloplhm-qwq, @Folltoshe)
|
||||
|
@ -241,7 +241,7 @@ export default {
|
||||
text: item.Content ? this.replaceEmoji(item.Content).replace(/\\n/g, '\n') : '',
|
||||
time: item.PubTime ? this.formatTime(item.PubTime) : null,
|
||||
timeStr: item.PubTime ? dateFormat2(this.formatTime(item.PubTime)) : null,
|
||||
userName: item.Nick ? item.Nick.substring(1) : '',
|
||||
userName: item.Nick ?? '',
|
||||
images: item.Pic ? [item.Pic] : [],
|
||||
avatar: item.Avatar,
|
||||
location: item.Location ? ('来自' + item.Location) : '',
|
||||
@ -254,7 +254,7 @@ export default {
|
||||
text: this.replaceEmoji(c.Content).replace(/\\n/g, '\n'),
|
||||
time: c.PubTime ? this.formatTime(c.PubTime) : null,
|
||||
timeStr: c.PubTime ? dateFormat2(this.formatTime(c.PubTime)) : null,
|
||||
userName: c.Nick ? c.Nick.substring(1) : '',
|
||||
userName: c.Nick ?? '',
|
||||
avatar: c.Avatar,
|
||||
images: c.Pic ? [c.Pic] : [],
|
||||
userId: c.EncryptUin,
|
||||
|
Loading…
x
Reference in New Issue
Block a user