mirror of
https://github.com/vrcx-team/VRCX.git
synced 2026-04-06 00:32:02 +02:00
fix: tts friend's name change bug
This commit is contained in:
@@ -828,7 +828,9 @@ export const useNotificationStore = defineStore('Notification', () => {
|
||||
return;
|
||||
}
|
||||
let displayName = '';
|
||||
if (noty.displayName) {
|
||||
if (noty.type === 'DisplayName' && noty.previousDisplayName) {
|
||||
displayName = noty.previousDisplayName;
|
||||
} else if (noty.displayName) {
|
||||
displayName = noty.displayName;
|
||||
} else if (noty.senderUsername) {
|
||||
displayName = noty.senderUsername;
|
||||
|
||||
Reference in New Issue
Block a user