mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 06:56:04 +02:00
Fix unfriended date
This commit is contained in:
+13
-12
@@ -949,22 +949,23 @@ export const useUserStore = defineStore('User', () => {
|
|||||||
notification.created_at
|
notification.created_at
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (!D.dateFriended) {
|
if (
|
||||||
if (notification.type === 'Unfriend') {
|
!D.dateFriended &&
|
||||||
D.unFriended = true;
|
notification.type === 'Unfriend'
|
||||||
if (
|
) {
|
||||||
!appearanceSettingsStore.hideUnfriends
|
D.unFriended = true;
|
||||||
) {
|
if (
|
||||||
D.dateFriended =
|
!appearanceSettingsStore.hideUnfriends
|
||||||
notification.created_at;
|
) {
|
||||||
}
|
|
||||||
}
|
|
||||||
if (notification.type === 'Friend') {
|
|
||||||
D.unFriended = false;
|
|
||||||
D.dateFriended =
|
D.dateFriended =
|
||||||
notification.created_at;
|
notification.created_at;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (notification.type === 'Friend') {
|
||||||
|
D.unFriended = false;
|
||||||
|
D.dateFriended =
|
||||||
|
notification.created_at;
|
||||||
|
}
|
||||||
if (
|
if (
|
||||||
notification.type === 'Friend' ||
|
notification.type === 'Friend' ||
|
||||||
(notification.type === 'Unfriend' &&
|
(notification.type === 'Unfriend' &&
|
||||||
|
|||||||
Reference in New Issue
Block a user