mirror of
https://github.com/kuaifan/dootask.git
synced 2026-01-03 10:21:55 +00:00
fix: 修复本地群消息通知没有会员昵称的问题
This commit is contained in:
parent
d23d77ff90
commit
562697da27
@ -1074,7 +1074,7 @@ export default {
|
||||
this.__notificationId = id;
|
||||
//
|
||||
const notificationFuncA = async (title) => {
|
||||
const tempUser = (await this.$store.dispatch("getUserData", userid).catch(_ => {}))?.data;
|
||||
const tempUser = await this.$store.dispatch("getUserData", userid).catch(_ => {});
|
||||
if (dialog_type === 'group' && tempUser) {
|
||||
title = `${title} (${tempUser.nickname})`
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user