mirror of
https://github.com/kuaifan/dootask.git
synced 2026-02-19 15:04:15 +00:00
fix: 修复本地群消息通知没有会员昵称的问题
This commit is contained in:
parent
d23d77ff90
commit
562697da27
@ -1074,7 +1074,7 @@ export default {
|
|||||||
this.__notificationId = id;
|
this.__notificationId = id;
|
||||||
//
|
//
|
||||||
const notificationFuncA = async (title) => {
|
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) {
|
if (dialog_type === 'group' && tempUser) {
|
||||||
title = `${title} (${tempUser.nickname})`
|
title = `${title} (${tempUser.nickname})`
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user